avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+9 -1
View File
@@ -73,7 +73,7 @@ export interface GlobOptions {
*/
follow?: boolean;
/**
* string or string[], or an object with `ignore` and `ignoreChildren`
* string or string[], or an object with `ignored` and `childrenIgnored`
* methods.
*
* If a string or string[] is provided, then this is treated as a glob
@@ -290,6 +290,14 @@ export interface GlobOptions {
* @default true
*/
includeChildMatches?: boolean;
/**
* max number of `{...}` patterns to expand. Default `1_000`.
*
* Note: this is much less than minimatch's default of `100_000`,
* because Glob has higher memory requirements due to walking
* the file system tree.
*/
braceExpandMax?: number;
}
export type GlobOptionsWithFileTypesTrue = GlobOptions & {
withFileTypes: true;