-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathtsconfig.json
30 lines (30 loc) · 869 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "esnext",
"jsx": "preserve",
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"checkJs": true,
"baseUrl": ".",
"typeRoots": ["./node_modules/@types"],
"lib": ["dom", "esnext"],
"paths": {
"components/*": ["./components/*"],
"api/*": ["./api/*"],
"utils/*": ["./utils/*"],
"@routes": ["./routes/index.ts"]
}
},
"exclude": ["node_modules"]
}