-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
42 lines (42 loc) · 1.02 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
{
"compilerOptions": {
"resolveJsonModule": true,
"target": "es2018",
"module": "commonjs",
"strict": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": false,
"skipLibCheck": true,
"skipDefaultLibCheck": false,
"inlineSourceMap": false,
"importHelpers": true,
"removeComments": false,
"esModuleInterop": true,
"jsx": "react",
"allowJs": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"~/*": ["./*"],
"#/*": ["test/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.js",
"typings/*.d.ts",
"packages/**/*.ts",
"packages/**/*.js",
"packages/**/*.tsx",
"packages/**/*.vue"
],
"exclude": ["node_modules", "packages/*/node_modules", "**.d.ts"]
}