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