No matching export `toSignal`
Closed this issue · 3 comments
crutchcorn commented
With the following input:
export { createAction, createReducer, on, StoreModule, createSelector } from '@ngrx/store';
I get the following error:
✘ [ERROR] No matching export in "http-url:https://unpkg.com/@angular/core@18.0.2/rxjs-interop/index.d.ts"; for import "toSignal"
Despite there being an export in @angular/core/rxjs-interop for toSignal
in that file:
okikio commented
Interesting, I'll take a quick look
okikio commented
This should now be fixed, please take a look bundlejs.com/?q=@ngrx/store&treeshake=[{+createAction,createReducer,on,StoreModule,createSelector+}]
crutchcorn commented
Works great! Thank you!