UNPKG

916 BTypeScriptView Raw
1/**
2 * Glob pattern to match all files in a project. Standard glob syntax
3 * @type {string}
4 */
5export declare const AllFiles = "**";
6/**
7 * Negative glob to exclude .git directory
8 * @type {string}
9 */
10export declare const ExcludeGit = "!.git/**";
11/**
12 * Negative glob to exclude node_modules directory. We nearly always want to exclude
13 * this when handling node projects, for performance reasons.
14 * @type {string}
15 */
16export declare const ExcludeNodeModules = "!**/node_modules/**";
17export declare const ExcludeTarget = "!target/**";
18/**
19 * Default exclusions (git and node modules).
20 * Must be combined with a positive glob.
21 * @type {[string , string]}
22 */
23export declare const DefaultExcludes: string[];
24/**
25 * Include all files except with default exclusions (git and node modules)
26 * @type {[string , string , string]}
27 */
28export declare const DefaultFiles: string[];
29//# sourceMappingURL=fileGlobs.d.ts.map
\No newline at end of file