Reputation: 5181
Angular version 9.2.0
When I import the MatToolbarModule
in a module and use it in the html template, then I get the following error message:
This likely means that the library (@angular/material/toolbar) which declares MatToolbarModule 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.
8 export declare class MatToolbarModule { ~~~~~~~~~~~~~~~~ src/app/angular-material.module.ts:53:14 - error NG6002: Appears in the NgModule.imports of ComponentsModule, but itself has errors
Does anyone face the same issue?
Upvotes: 71
Views: 114154
Reputation: 346
Here to me was because I forgot import a module.ts, and the console did not show about it. so, I only imported it and the angular worked ok. You can review all your modules.ts if there are some error with imports.
Upvotes: 1
Reputation: 729
I faced similar problem with MatDatePicker. The problem was that I had imported MatDatepicker
instead of importing MatDatepickerModule
in the app.module.ts
file.
So, check that you have imported MODULE not Component in your module file.
Upvotes: 11
Reputation: 1
For me it was due to unused (or rather broken) ValueAccessor
s – removing them fixed this.
Upvotes: 0
Reputation: 1116
Add below specific configuration in package.json
and npm install
.
{
"scripts": {
"postinstall": "ngcc"
}
}
Reference: https://angular.io/guide/ivy#speeding-up-ngcc-compilation
Upvotes: 106
Reputation: 89
Maybe the selected answer could not be the correct one because you may want bundle the dependency when you are building the application.
From https://angular.io/guide/ivy#speeding-up-ngcc-compilation
In version 9, the server builder which is used for App shell and Angular Universal has the bundleDependencies option enabled by default. If you opt-out of bundling dependencies you will need to run the standalone Angular compatibility compiler (ngcc).
I'm opting of restarting the server everytime i'm adding a material component into AppModule. But if i'm wrong, please let me know.
Upvotes: 1
Reputation: 183
So I was just having a similar issue, and I was able to fix it by rearranging my import modules.
In my case, I was calling LoadingBarRouterModule
before the main module LoadingBarModule
. Check to see if you are loading the MatToolbarModule
module before another required module and move it below that.
Upvotes: 4
Reputation: 85
stop your angular service (if you use command prompt or powershell ctrl + c) and run again(ng serve)
Upvotes: 0
Reputation: 923
I had the same problem before, its because you modify your app.module.ts
file while the server is running.
Try to stop it and then run it again using the ng serve
command.
Upvotes: 90
Reputation: 6384
This used to happen to me whenever I imported 'MatToolbar' 'MatDialog' instead of 'MatToolbarModule' or 'MatDialogModule'.
Upvotes: 71
Reputation: 1471
I found an error in imports section, i've added unexisting item.
import { MatMenuItem } from '@angular/material/menu';
and MatMenut item doesn't exist, i changed in MatMenuModule and after works
Upvotes: 4
Reputation: 3225
What worked for me is importing the whole module for MatToolbar.
import {MatToolbarModule} from '@angular/material/toolbar';
And then adding MatToolbarModule to the imports[] array in my app.module.ts.
Upvotes: 0
Reputation: 94
I imported some classes(FormControl, FormGroup, Validators) which are not modules in app.module.ts
I removed those classes and it solved my problem.
Upvotes: 0
Reputation: 5181
I solved it by removing the node_modules and reinstalled it.
Complete discussion here: https://github.com/angular/components/issues/18637
Upvotes: 0