-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.build.json
42 lines (42 loc) · 991 Bytes
/
tsconfig.build.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
31
32
33
34
35
36
37
38
39
40
41
42
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"allowUmdGlobalAccess": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": ".",
"checkJs": false,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": false,
"experimentalDecorators": true,
"jsx": "preserve",
"lib": [
"DOM",
"ES2019",
],
"module": "CommonJS",
"moduleResolution": "node",
"noEmit": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"pretty": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": false,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2016"
},
"exclude": [
"node_modules",
"dist"
]
}