-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
37 lines (37 loc) · 1017 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
{
"compilerOptions": {
"incremental": true,
"module": "esnext",
"target": "es5",
"allowJs": false,
"checkJs": false,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"isolatedModules": true,
"removeComments": false,
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": false,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@src/*": ["./src/*"],
"@api/*": ["./src/api/*"],
"@utils/*": ["./src/utils/*"],
"@containers/*": ["./src/containers/*"],
"@assets/*": ["./src/assets/*"],
"@types/*": ["./src/types/*"],
"@components/*": ["./src/components/*"]
}
},
"include": ["./src/**/*", "./node_modules", "env.d.ts"],
"exclude": ["dist"]
}