After upgrade of all @angular related packages to v5.0.3, demo project started to throw following error into dev tools console:
Uncaught Error: Unexpected value '[object Object]' imported by the module 'AppModule'. Please add a @NgModule annotation.
[object Object] is basically return of .forRoot() method, of library's root module, AppModule is a demo app root module.
Any ideas on how to deal with this?
After upgrade of all
@angularrelated packages to v5.0.3, demo project started to throw following error into dev tools console:Uncaught Error: Unexpected value '[object Object]' imported by the module 'AppModule'. Please add a @NgModule annotation.[object Object]is basicallyreturnof.forRoot()method, of library's root module,AppModuleis ademoapp root module.Any ideas on how to deal with this?