We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c783ddc commit a857615Copy full SHA for a857615
tsconfig.json
@@ -3,8 +3,8 @@
3
"compilerOptions": {
4
"allowJs": true,
5
"allowSyntheticDefaultImports": true,
6
- "allowUnreachableCode": true,
7
- "baseUrl": ".",
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
8
"checkJs": true,
9
"declaration": true,
10
"esModuleInterop": true,
@@ -15,10 +15,11 @@
15
"noEmit": true,
16
"noImplicitReturns": true,
17
"noUncheckedIndexedAccess": true,
18
+ "noUnusedLocals": false, // TODO enable
19
+ "noUnusedParameters": true,
20
"resolveJsonModule": true,
21
"skipLibCheck": true,
22
"strict": true,
- "strictNullChecks": true,
23
"target": "ES2020"
24
},
25
"include": [".eslintrc.cjs", "prettier.config.js"]
0 commit comments