redux toolkit with typescript
회사에서 chrome extension 관련 개발을 하면서 redux를 redux toolkit으로 교체하고 typing까지 해주어야 할 일이 생겼다. 결론적으론 기존 redux보다 훨씬 코드량이 줄어서 만족중. 코드 전문을 보자면 다음과 같다. const initialState = {} const rootReducer = combineReducers({ firebase: firebaseReducer, firestore: firestoreReducer, dropdown: dropdownReducer, shortcutAction: shortcutActionReducer }) const store = configureStore({ reducer: rootReducer, middleware: getDefaul..