I have changed the order of imports in my app.module.ts as mentioned here
So you need to have it for example like this:
imports: [
BrowserModule,
FormsModule,
HeroesModule,
AppRoutingModule
]
The most important is to have First BrowserModule and at the end AppRoutingModule.