Hello, I work on a typescript react redux app using typesafe-actions. Recently, compiling / typechecking takes a lot of time (around 180s) (the app also requires more memory recently >8GB, but we fixed this using craco, and is not a problem anymore). The main section that I identified that takes a lot of time is the ActionType<typeof RootAction> (commenting this line will generate errors, but will reduce the compile time to ~10s).
The problem seems to be when infering all action types on the RootAction, it seems to be an union of all types from all actions.
export const user = createReducer({} as User)
.handleAction(fetchCurrentUserAsync.success, (state, action) => {
return {...state, ...action.payload},
},
};
})
Reducers are merged using combineReducer, except from this is when merging reducers into RootReducer, where the setup is as follows (this might not be the best approach, but AFAIK this shouldn't be the main problem ):
import { StateType, ActionType } from 'typesafe-actions';
import RootReducer from '../redux/store/root-reducer';
import RootAction from '../redux/store/root-action';
declare module 'typesafe-actions' {
export type RootState = StateType<typeof RootReducer>;
export type RootAction = ActionType<typeof RootAction>;
export type Services = typeof import('./index').default;
interface Types {
RootAction: RootAction;
}
}
My solution would be to remove typechecking with RootAction and add the types by hand for each .handleAction, but this is a workaround, not a fix. Do you have any ideas what how to fix that long compilation time on RootAction?
Hello, I work on a typescript react redux app using typesafe-actions. Recently, compiling / typechecking takes a lot of time (around 180s) (the app also requires more memory recently >8GB, but we fixed this using craco, and is not a problem anymore). The main section that I identified that takes a lot of time is the
ActionType<typeof RootAction>
(commenting this line will generate errors, but will reduce the compile time to ~10s).The problem seems to be when infering all action types on the RootAction, it seems to be an union of all types from all actions.
The codebase has:
The setup is as follows: Action:
Epic:
Reducer:
Reducers are merged using
combineReducer
, except from this is when merging reducers into RootReducer, where the setup is as follows (this might not be the best approach, but AFAIK this shouldn't be the main problem ):Action / State types:
My solution would be to remove typechecking with RootAction and add the types by hand for each
.handleAction
, but this is a workaround, not a fix. Do you have any ideas what how to fix that long compilation time on RootAction?