-
Notifications
You must be signed in to change notification settings - Fork 39
/
tsconfig.json
40 lines (40 loc) · 980 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
31
32
33
34
35
36
37
38
39
40
{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"outDir": "build",
"lib": ["es2018", "dom"],
"sourceMap": true,
"rootDir": "src",
"baseUrl": "src",
"strict": true /* enable all strict type-checking options */,
/* Additional Checks */
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"typings": ["../typings/index.d.ts"],
"typings/tutorial": ["../typings/tutorial.d.ts"],
"typings/error": ["../typings/error.d.ts"]
},
"allowJs": true,
"removeComments": true
},
"exclude": [
"docs",
"node_modules",
".vscode-test",
"build",
"resources",
"web-app",
"*.js",
"*.test.ts",
"scripts"
]
}