-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtsconfig.json
34 lines (34 loc) · 979 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
{
"compileOnSave": false,
"compilerOptions": {
"types": ["node", "jest"],
"target": "es6",
"module": "esnext",
"jsx": "react",
"noEmit": true,
"allowJs": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"baseUrl": ".",
"resolveJsonModule": true,
"paths": {
"pages/*": ["src/pages/*"],
"providers/*": ["src/providers/*"],
"components/*": ["src/components/*"],
"containers/*": ["src/containers/*"],
"api/*": ["src/api/*"],
"layout/*": ["src/layout/*"],
"util/*": ["src/util/*"],
"types/*": ["types/*"]
},
"lib": ["dom", "es2015", "es2016", "es2020.string"]
},
"exclude": ["dist/**/*", "public/**/*", "node_modules"]
}