I use angular 9, primeng 9
I have my module : ItemModule
:
import { CalendarModule } from 'primeng/calendar';
@NgModule({
imports: [
CalendarModule
.....
],
.....
})
But I get the error :
ERROR in node_modules/primeng/components/calendar/calendar.d.ts:246:22 - error NG6002:
Appears in the NgModule.imports of ItemModule, but could not be resolved to an NgModule class.
This likely means that the library (primeng/calendar) which declares CalendarModule has not been processed correctly by ngcc, or is not compatible with Angular Ivy.
Check if a newer version of the library is available, and update if so.
Also consider checking with the library's authors to see if the library is expected to be compatible with Ivy.
246 export declare class CalendarModule {
I saw in there doc, this version of primeng should be compatible with angular 9 ivy.
Have you an idea about that ? Thx in advance.