// polyfills, comment the following out for debugging purpose import 'core-js/es6'; import 'core-js/es7/reflect'; import 'zone.js/dist/zone'; // The browser platform with a compiler import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; //noinspection TypeScriptCheckImport import { Ng2UtilsModule } from 'ng2-utils'; import { AppComponent } from './app.component'; @NgModule({ imports: [BrowserModule, Ng2UtilsModule], declarations: [AppComponent], bootstrap: [ AppComponent ] }) export class AppModule { } platformBrowserDynamic().bootstrapModule(AppModule);