-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (41 loc) · 958 Bytes
/
tsconfig.json
File metadata and controls
43 lines (41 loc) · 958 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "dist",
"declarationMap": true,
"downlevelIteration": true,
"allowUmdGlobalAccess": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "remove",
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"removeComments": true,
"pretty": true,
"importHelpers": false,
"incremental": false,
"noErrorTruncation": false,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "Node",
"noImplicitAny": false,
"outDir": "build",
"sourceMap": true,
"strict": true,
"skipDefaultLibCheck": true,
"target": "es6",
},
"include": [
"src"
],
"exclude": [
"tools", "test", "dist", "node_modules"
],
"ts-node": {
"typeCheck": true
},
"buildOptions": {
"verbose": true
}
}