forked from SitePen/dojo-amd-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
23 lines (17 loc) · 786 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
define({
// Paths to skip processing. Each path should be a regular expression that matches against the path to a file,
// starting from srcDir (excluding srcDir; e.g. excluding <srcDir>/foo/* would be a match against /^foo\//).
excludePaths: [ /\/tests\// ],
// Root directory of files to process.
srcDir: "./tests",
// Output directory for processed files.
distDir: "./dist",
// Print output instead of sending it to an output directory.
printOutput: false,
// Make declare calls anonymous instead of leaving the first argument as-is.
makeDeclareAnonymous: false,
// Removed dependencies that are not referenced in a module (or its template).
removeUnusedDependencies: false,
// Only process HTML files inside template directories.
onlyProcessTemplates: false
});