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 @@ -20,7 +20,8 @@ export type {
20
20
} from './fetchBaseQuery'
21
21
export { retry } from './retry'
22
22
export { setupListeners } from './core/setupListeners'
23
- export { skipSelector , skipToken , SkipToken } from './core/buildSelectors'
23
+ export { skipSelector , skipToken } from './core/buildSelectors'
24
+ export type { SkipToken } from './core/buildSelectors'
24
25
export type { CreateApi , CreateApiOptions } from './createApi'
25
26
export { buildCreateApi } from './createApi'
26
27
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