Interface ExpandGlobOptions
interface ExpandGlobOptions {
canonicalize?: boolean;
exclude?: string[];
followSymlinks?: boolean;
includeDirs?: boolean;
root?: string;
}
canonicalize?: boolean;
exclude?: string[];
followSymlinks?: boolean;
includeDirs?: boolean;
root?: string;
}
Hierarchy
- Omit<GlobOptions, "os">
- ExpandGlobOptions
Index
Properties
Properties
Optionalcanonicalize
canonicalize?: boolean
Indicates whether the followed symlink's path should be canonicalized.
This option works only if followSymlinks is not false.
Optionalexclude
exclude?: string[]
List of glob patterns to be excluded from the expansion.
OptionalfollowSymlinks
followSymlinks ?: boolean
Whether to follow symbolic links.
OptionalincludeDirs
includeDirs ?: boolean
Whether to include directories in entries.
Optionalroot
root?: string
File path where to expand from.
Options for
expandGlobandexpandGlobSync.