-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
30 lines (30 loc) · 1002 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"include": [
"spec/**/*"
],
"exclude": ["node_modules", "build"],
"compileOnSave": true,
"compilerOptions": {
"target": "es5", // Compatible with older browsers
"module": "commonjs", // Compatible with both Node.js and browser
"moduleResolution": "node", // Tell tsc to look in node_modules for modules
"sourceMap": false, // Creates *.js.map files
"inlineSourceMap": true,
"strict": true, // Strict types, eg. prohibits `var x=0; x=null`
"alwaysStrict": true, // Enable JavaScript's "use strict" mode
"types" : ["node"],
"outDir": "build",
"sourceRoot": "./spec",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types"]
},
"typedocOptions": {
"mode": "modules",
"out": "docs/build",
"categorizeByGroup": true,
"exclude": ["spec/**/index.ts"],
"theme" : "docs/themeoverride",
"excludeNotExported" : false
}
}