-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
35 lines (35 loc) · 901 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
{
"compilerOptions": {
"baseUrl": "src",
"outDir": "./dist/",
"sourceMap": true,
"strictNullChecks": true,
"module": "Node16",
"moduleResolution": "Node16",
"jsx": "react-jsx",
"target": "ESNext",
"resolveJsonModule": true,
"isolatedModules": true,
"importsNotUsedAsValues": "remove",
"skipLibCheck": true,
"allowJs": true,
"allowSyntheticDefaultImports": true
},
"lib": ["DOM", "ESNext"],
"typeRoots": ["./node_modules/@types", "./src/types"],
"include": [
"build.js",
"webpack.config.js",
"./src/"
],
"exclude": ["node_modules", "dist"],
"paths": {
"services/*": ["./src/services/*"],
"components/*": ["./src/components/*"],
"contexts/*": ["./src/contexts/*"],
"hooks/*": ["./src/hooks/*"],
"types/*": ["./src/types/*"],
"assets/*": ["./src/assets/*"],
"utils": ["./src/utils.js"]
}
}