avancement planning
This commit is contained in:
+9
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user