-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
25 lines (25 loc) · 643 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
25 lines (25 loc) · 643 Bytes
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
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"sourceMap": true,
"composite": true,
"declaration": true,
"experimentalDecorators": true,
"lib": ["ES2020"],
"types": ["node"],
"strictNullChecks": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noImplicitOverride": true
}
}