I get the error below
ERROR in node_modules/ngx-bootstrap/popover/popover.module.d.ts:3:23 - error NG6005:
PopoverModule.forRoot returns a ModuleWithProviders type without a generic type argument.
Please add a generic type argument to the ModuleWithProviders type.
If this occurrence is in library code you don't control, please contact the library authors.
I just added Ngx-Bootstrap's Popover Module and imported PopoverModule.forRoot(). This seems to be Angular 9 incompatibility. How to solve this?
It's so petty how I solved this error.
I simply run
ng add ngx-bootstrap --component popover.It says:
But when I served the project, it ran successfully anyway.