UNPKG

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