Skip to content

Commit 13a63f8

Browse files
committed
Fix tsconfig.json
1 parent 0e7a06e commit 13a63f8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

codemods/tsconfig.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@
1111
"moduleResolution": "Node",
1212
"noEmit": true,
1313
"noErrorTruncation": true,
14+
"noFallthroughCasesInSwitch": true,
1415
"noUnusedLocals": false,
1516
"noUnusedParameters": false,
1617
"paths": {
1718
"reselect": ["../src/index.ts"]
1819
},
20+
"rootDir": ".",
1921
"skipLibCheck": true,
2022
"strict": true,
2123
"target": "ESNext",
22-
"types": ["vitest/globals", "vitest/importMeta"]
23-
}
24+
"types": ["vitest/globals", "vitest/importMeta"],
25+
"useDefineForClassFields": true,
26+
"useUnknownInCatchVariables": true
27+
},
28+
"exclude": ["**/__testfixtures__/**"]
2429
}

0 commit comments

Comments
 (0)