-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathtsconfig-base.json
40 lines (39 loc) · 1.07 KB
/
tsconfig-base.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
39
40
{
"compilerOptions": {
"baseUrl": ".",
"types": [
"node","jest"
],
"moduleResolution": "node",
"target": "ES2019",
"module": "CommonJS",
"esModuleInterop": true,
"lib": ["es2021"],
"strict": false,
"pretty": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"removeComments": true,
"skipLibCheck": false,
"noEmitHelpers": true,
"importHelpers": true,
"skipDefaultLibCheck": true,
"allowJs": false,
},
"exclude": [
"node_modules"
],
"sourcemap": true
}