This repository has been archived by the owner on Dec 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
67 lines (65 loc) · 1.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
// "alwaysStrict": true, // Covered by `strict` option.
"diagnostics": false,
"downlevelIteration": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"jsx": "preserve",
"lib": [
"es2017",
"esnext.asynciterable",
"dom"
],
"module": "esnext",
"moduleResolution": "node",
"newLine": "lf",
"noEmitHelpers": false, // see: https://github.com/Microsoft/TypeScript/issues/3364
"noFallthroughCasesInSwitch": true,
// "noImplicitAny": true, // Covered by `strict` option.
"noImplicitReturns": true,
// "noImplicitThis": true, // Covered by `strict` option.
"noImplicitUseStrict": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "./__obj/",
"plugins": [ // for language service plugin.
{
"name": "tslint-language-service"
}
],
"pretty": true,
"preserveConstEnums": true,
"removeComments": false,
"skipLibCheck": true, // To avid the compile error with rxjs.
"sourceMap": true,
"strict": true,
// "strictNullChecks": true, // Covered by `strict` option.
"suppressImplicitAnyIndexErrors": false,
"target": "esnext",
"types": [ // for d.ts which affects global environment.
"mocha",
"node"
]
},
"include": [
"config/**/*",
"src/**/*"
],
"exclude": [
".git",
"__dist",
"__obj",
"__test_cache",
"defaults",
"node_modules",
"resource",
"src/server",
"src/style",
"tools"
]
}