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.
tsconfig.json
1 parent 0e7a06e commit 13a63f8Copy full SHA for 13a63f8
codemods/tsconfig.json
@@ -11,14 +11,19 @@
11
"moduleResolution": "Node",
12
"noEmit": true,
13
"noErrorTruncation": true,
14
+ "noFallthroughCasesInSwitch": true,
15
"noUnusedLocals": false,
16
"noUnusedParameters": false,
17
"paths": {
18
"reselect": ["../src/index.ts"]
19
},
20
+ "rootDir": ".",
21
"skipLibCheck": true,
22
"strict": true,
23
"target": "ESNext",
- "types": ["vitest/globals", "vitest/importMeta"]
- }
24
+ "types": ["vitest/globals", "vitest/importMeta"],
25
+ "useDefineForClassFields": true,
26
+ "useUnknownInCatchVariables": true
27
+ },
28
+ "exclude": ["**/__testfixtures__/**"]
29
}
0 commit comments