-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (33 loc) · 1.02 KB
/
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
{
"compileOnSave": true,
"compilerOptions": {
"strictNullChecks": true,
"skipLibCheck": true,
"removeComments": true,
"incremental": true,
"esModuleInterop": false,
"experimentalDecorators": true,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"typeRoots": ["node_modules/@types"],
"paths": {
"*": [
"node_modules/*",
"src/types/*"
]
},
"types": [
"node"
],
"alwaysStrict": true
},
"include": [
"src/**/*"
]
}