-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
38 lines (32 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
38
{
"compileOnSave": true,
"compilerOptions": {
// --- output --- //
"declaration": false,
"outDir": "./dist",
"sourceMap": true,
"target": "es5",
"module": "es2015",
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// --- module resolution --- //
"typeRoots" : ["./node_modules/@types","./@types"],
"moduleResolution": "node",
"baseUrl": ".",
// --- validation options --- //
"alwaysStrict": true,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "es2017"],
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"skipLibCheck": true,
"strictNullChecks": false
}
}