File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
export { createEntityAdapter } from './create_adapter'
2
- export {
2
+ export type {
3
3
Dictionary ,
4
4
EntityState ,
5
5
EntityAdapter ,
Original file line number Diff line number Diff line change @@ -189,5 +189,5 @@ export {
189
189
SHOULD_AUTOBATCH ,
190
190
prepareAutoBatched ,
191
191
autoBatchEnhancer ,
192
- AutoBatchOptions ,
193
192
} from './autoBatchEnhancer'
193
+ export type { AutoBatchOptions } from './autoBatchEnhancer'
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ export type {
19
19
} from './fetchBaseQuery'
20
20
export { retry } from './retry'
21
21
export { setupListeners } from './core/setupListeners'
22
- export { skipSelector , skipToken , SkipToken } from './core/buildSelectors'
22
+ export { skipSelector , skipToken } from './core/buildSelectors'
23
+ export type { SkipToken } from './core/buildSelectors'
23
24
export type { CreateApi , CreateApiOptions } from './createApi'
24
25
export { buildCreateApi } from './createApi'
25
26
export { fakeBaseQuery } from './fakeBaseQuery'
Original file line number Diff line number Diff line change 26
26
"skipLibCheck" : true ,
27
27
// error out if import and file system have a casing mismatch. Recommended by TS
28
28
"forceConsistentCasingInFileNames" : true ,
29
+ // ensure that each file can be safely transpiled by babel (etc.) without relying on other imports
30
+ "isolatedModules" : true ,
29
31
"downlevelIteration" : false ,
30
32
"allowSyntheticDefaultImports" : true ,
31
33
"emitDeclarationOnly" : true ,
You can’t perform that action at this time.
0 commit comments