-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
34 lines (34 loc) · 876 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"jsx": "preserve",
"noEmit": true,
"moduleResolution": "node",
"rootDir": "src",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"useDefineForClassFields": true,
"experimentalDecorators": true,
"baseUrl": "./src",
"incremental": true, // 增量编译,加快速度
"allowUmdGlobalAccess": true,
"downlevelIteration": true,
"paths": {
"store/*": [
"src/store/*"
]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": [
"typings/**/*",
"src/**/*"
]
}