-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 891 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
41
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"*": ["types/*"]
},
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom", "es2015"],
"sourceMap": true,
"allowJs": false,
"checkJs": false,
"experimentalDecorators": true,
"jsx": "react",
"importHelpers": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"allowSyntheticDefaultImports": true,
"noUnusedParameters": false,
"downlevelIteration": true,
"allowUnreachableCode": true,
"skipLibCheck": true,
"locale": "zh-CN"
},
"include": [
"src",
"scripts",
"config"
],
"exclude": [
"node_modules",
"build",
"flow-typed"
],
"module": "ESNext"
}