I have encountered an issue in my Angular project that involves the compatibility of the ng-connection-service
library with Angular Ivy
. When I attempt to bring in the ConnectionServiceModule
from the ng-connection-service
into my Angular module, I am receiving the following error message:
Error: src/app/app.module.ts:39:5 - error NG6002: 'ConnectionServiceModule' is not recognized as an NgModule class.
39 ConnectionServiceModule
~~~~~~~~~~~~~~~~~~~~~~~
node_modules/ng-connection-service/lib/ng-connection-service.module.d.ts:1:22
1 export declare class ConnectionServiceModule {
~~~~~~~~~~~~~~~~~~~~~~~
This indicates that the ng-connection-service library, which defines ConnectionServiceModule, may not be compatible with Angular Ivy. It is advisable to look for a newer version of the library and update it if available. Additionally, consider reaching out to the creators of the library to inquire about its compatibility with Ivy.
✖ Compilation failed.