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 11export { createEntityAdapter } from './create_adapter'
2- export {
2+ export type {
33 Dictionary ,
44 EntityState ,
55 EntityAdapter ,
Original file line number Diff line number Diff line change @@ -189,5 +189,5 @@ export {
189189 SHOULD_AUTOBATCH ,
190190 prepareAutoBatched ,
191191 autoBatchEnhancer ,
192- AutoBatchOptions ,
193192} from './autoBatchEnhancer'
193+ export type { AutoBatchOptions } from './autoBatchEnhancer'
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ export type {
2020} from './fetchBaseQuery'
2121export { retry } from './retry'
2222export { 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'
2425export type { CreateApi , CreateApiOptions } from './createApi'
2526export { buildCreateApi } from './createApi'
2627export { fakeBaseQuery } from './fakeBaseQuery'
Original file line number Diff line number Diff line change 2626 "skipLibCheck" : true ,
2727 // error out if import and file system have a casing mismatch. Recommended by TS
2828 "forceConsistentCasingInFileNames" : true ,
29+ // ensure that each file can be safely transpiled by babel (etc.) without relying on other imports
30+ "isolatedModules" : true ,
2931 "downlevelIteration" : false ,
3032 "allowSyntheticDefaultImports" : true ,
3133 "emitDeclarationOnly" : true ,
You can’t perform that action at this time.
0 commit comments