I am currently in the process of upgrading my application from version 7 to version 9. However, I have encountered an issue with the new IVY compiler in Angular 9 not being compatible with the library angular-webstorage-service, resulting in the following error:
ERROR in node_modules/angular-webstorage-service/src/storage-service.module.d.ts:9:22 - error NG6002: Appears in the NgModule.imports of AppModule, but could not be resolved to an NgModule class.
This indicates that the library (angular-webstorage-service) containing StorageServiceModule has either not been processed correctly by ngcc or is incompatible with Angular Ivy. It may be worth checking for a newer version or reaching out to the library's authors for clarification on its compatibility with Ivy.
Any suggestions for making Angular 9 compatible with this issue?