For me the problem was that I did not import the custom made module HouseModule
in my app.module.ts
. I had the other imports.
File: app.module.ts
import { HouseModule } from './Modules/house/house.module';
@NgModule({
imports: [
HouseModule
]
})