After upgrading to Angular 9 and PrimeNg 9 (rc.4), I get
ERROR in The target entry-point "primeng" has missing dependencies:
after manually installing chart.js I get same error but with
after installing quill I get same error with
Finally it then compiles.
If primeng needs these dependencies, then it should install them.
Hi @timfogarty1549, you can track at https://github.com/primefaces/primeng/issues/8560 .
the imports from "primeng" or "primeng/primeng" were deprecated, so, please use like below
import { TableModule } from "primeng/table";
import { ToastModule } from "primeng/toast";
import { CalendarModule } from "primeng/calendar";
@TIMORHIM Thanks man.
Most helpful comment
the imports from "primeng" or "primeng/primeng" were deprecated, so, please use like below
import { TableModule } from "primeng/table";
import { ToastModule } from "primeng/toast";
import { CalendarModule } from "primeng/calendar";