const MATERIAL_DESIGN_DIRECTIVES = [ MdButton, MdInput, ]; @NgModule({ imports: [ BrowserModule, ReactiveFormsModule, FormsModule, MdCardModule, MdCheckboxModule, MdIconModule, MdListModule, MdSidenavModule, MdToolbarModule, RouterModule.forRoot([...routes ], {}) ], declarations: [ App, ...MATERIAL_DESIGN_DIRECTIVES, ...PAGES_COMMON, ...PAGES_COMPONENTS, ...PROJECT_COMPONENT_DIRECTIVES ], providers: [ ...APP_PROVIDERS, ...PROVIDERS, MdIconRegistry ], schemas: [CUSTOM_ELEMENTS_SCHEMA], entryComponents: [ ...PAGES_COMPONENTS ], bootstrap: [ App ] }) export class MyAppModule { ngDoBootstrap(appRef: ApplicationRef) { appRef.bootstrap(App); } };