FsOptions
Options for the filesystem layer — matching semantics plus on-disk resolution controls.
Extends
Section titled “Extends”Properties
Section titled “Properties”| Property | Type | Description | Inherited from |
|---|---|---|---|
absolute? | boolean | Return absolute paths. Default false. | - |
caseInsensitive? | boolean | Match paths ignoring ASCII case. Default false. | Options.caseInsensitive |
cwd? | string | Directory the globs resolve against. Default process.cwd(). | - |
dot? | boolean | Let */** match a leading-dot segment. Default false (dotfiles are excluded). | Options.dot |
globstarMatchesZero? | boolean | A globstar between separators may span zero segments (so a/**/b matches a/b). Default true. | Options.globstarMatchesZero |
ignore? | readonly string[] | Globs to exclude from results. | - |
onlyFiles? | boolean | Return files only (skip directories). Default true. | - |