File tree Expand file tree Collapse file tree 2 files changed +28
-14
lines changed Expand file tree Collapse file tree 2 files changed +28
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments