web-dev-qa-db-ja.com

Ngx-BootstrapおよびAngular 9 ModuleWithProvidersエラー

以下のエラーが発生します

_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.
_

Ngx-BootstrapのPopover Moduleを追加し、PopoverModule.forRoot()をインポートしました。これはAngular 9非互換性のようです。これを解決する方法は?

2
Char

私がこのエラーを解決したのはとてもささいなことです。

私は単にng add ngx-bootstrap --component popover

それは言う:

Skipping installation: Package already installed
Unknown option: '--component'
Unknown option: 'popover'

しかし、私がプロジェクトを担当したとき、それはとにかく成功しました。

2
Char