-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 878 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
38
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"lib": ["es2016", "es2017", "ES2020", "dom"],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"resolveJsonModule": true,
"declaration": true,
"outDir": "./lib",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"pretty": true,
"stripInternal": true,
"types": ["node"]
},
"compileOnSave": true,
"include": [
"src/**/*",
],
"exclude": [
"bin",
"demo_usage",
"node_modules"
]
}