import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; <% if (routing) { %> import { AppRoutingModule } from './app-routing.module';<% } %> import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule<% if (routing) { %>, AppRoutingModule<% } %> ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }