Skip to content

Commit 21b67f0

Browse files
committed
Copy tsconfig.json from Reselect codemod
1 parent 8dd9609 commit 21b67f0

File tree

2 files changed

+28
-14
lines changed

2 files changed

+28
-14
lines changed

packages/rtk-codemods/bin/tsconfig.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

packages/rtk-codemods/tsconfig.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
4+
"noUnusedLocals": false,
5+
"noUnusedParameters": false,
6+
"isolatedModules": true,
7+
"checkJs": true,
8+
"baseUrl": ".",
9+
"noEmit": true,
10+
"strict": true,
11+
"target": "ESNext",
12+
"module": "ESNext",
13+
"moduleResolution": "Node",
14+
"esModuleInterop": true,
15+
"skipLibCheck": true,
16+
"allowJs": true,
17+
"jsx": "preserve",
18+
"noErrorTruncation": true,
19+
"forceConsistentCasingInFileNames": true,
20+
"paths": {
21+
"@reduxjs/toolkit": ["../toolkit/src/index.ts"], // @remap-prod-remove-line
22+
"@reduxjs/toolkit/query": ["../toolkit/src/query/index.ts"], // @remap-prod-remove-line
23+
"@reduxjs/toolkit/react": ["../toolkit/src/react/index.ts"], // @remap-prod-remove-line
24+
"@reduxjs/toolkit/query/react": ["../toolkit/src/query/react/index.ts"] // @remap-prod-remove-line
25+
}
26+
},
27+
"include": ["**/*.ts", "**/*.tsx", "bin/cli.js"]
28+
}

0 commit comments

Comments
 (0)