-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
37 lines (37 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
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@api/*": ["src/api/*"],
"@store/*": ["src/store/*"],
"@pages/*": ["src/pages/*"],
"@assets/*": ["src/assets/*"],
"@modules/*": ["src/modules/*"],
"@components/*": ["src/components/*"],
"@router/*": ["src/router/*"],
"@libs/*": ["src/libs/*"],
"@utils/*": ["src/utils/*"]
},
"outDir": "./public",
"sourceMap": true,
"target": "ESNext",
"module": "commonjs",
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"suppressImplicitAnyIndexErrors": false
},
"include": ["src", "**/*.d.ts"],
"exclude": ["node_modules"]
}