Skip to content

Instantly share code, notes, and snippets.

@elgervb
Last active April 5, 2018 11:05
Show Gist options
  • Save elgervb/03d997c2c6b38cf8ad56a0bc67599dd1 to your computer and use it in GitHub Desktop.
Save elgervb/03d997c2c6b38cf8ad56a0bc67599dd1 to your computer and use it in GitHub Desktop.
Angular CoreModule
@NgModule({
imports: [
...
],
providers: [
...
],
exports: [
...
]
})
export class CoreModule {
constructor(@Optional() @SkipSelf() parentModule: CoreModule) {
if (parentModule) {
throw new Error(
'CoreModule is already loaded. Import it in the AppModule only');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment