We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dc439c commit d9aa96eCopy full SHA for d9aa96e
tsconfig.json
@@ -1,19 +1,24 @@
1
{
2
"compilerOptions": {
3
- "alwaysStrict": true,
4
- "noImplicitAny": true,
5
- "noImplicitThis": true,
6
- "strict": true,
+ "target": "ES2021",
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
+ "exactOptionalPropertyTypes": true,
7
"noFallthroughCasesInSwitch": true,
8
+ "noImplicitOverride": true,
9
"noImplicitReturns": true,
10
+ "noPropertyAccessFromIndexSignature": true,
11
+ "noUncheckedIndexedAccess": true,
12
"noUnusedLocals": true,
13
"noUnusedParameters": true,
14
+ "strict": true,
15
"module": "CommonJS",
16
"moduleResolution": "Node",
17
+ "esModuleInterop": true,
18
+ "lib": ["ES2021"],
19
"sourceMap": true,
20
"declaration": true,
21
"declarationMap": true,
- "lib": ["ES2020"],
22
"outDir": "dist"
23
}
24
0 commit comments