UNPKG

malgo-brat-frontend-editor

Version:
36 lines (26 loc) 851 B
// For vendors for example jQuery, Lodash, angular2-jwt just import them here unless you plan on // chunking vendors files for async loading. You would need to import the async loaded vendors // at the entry point of the async loaded file. Also see custom-typings.d.ts as you also need to // run `typings install x` where `x` is your module // TODO(gdi2290): switch to DLLs // Angular 2 import '@angular/platform-browser'; import '@angular/platform-browser-dynamic'; import '@angular/core'; import '@angular/common'; import '@angular/forms'; import '@angular/http'; import '@angular/router'; // AngularClass import '@angularclass/hmr'; // RxJS import 'rxjs/add/operator/map'; import 'rxjs/add/operator/mergeMap'; // Bootstrap import 'jquery'; import 'bootstrap-loader'; if ('production' === ENV) { // Production } else { // Development }