-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
31 lines (31 loc) · 855 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
{
"compilerOptions": {
"experimentalDecorators": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"rootDir": "./src",
// "baseUrl": "./src",
"target": "es6",
"sourceMap": false,
"outDir": "./build",
"allowSyntheticDefaultImports": true,
"allowJs": false,
"importHelpers": true,
"removeComments": true,
"isolatedModules": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["jest"],
"paths": {
// "@/libs/*": ["libs/*"]
// "@/types/*": ["src/types/*"],
// "@/controllers/*": ["src/controllers/*"],
// "@/commands/*": ["src/commands/*"]
// "@/utils/*": ["src/utils/*"]
}
},
"lib": ["esnext"],
"typeRoots": ["./src/", "./node_modules/@types"],
"exclude": ["node_modules/", "build/", "tests/**"]
}