24 lines
663 B
TypeScript
24 lines
663 B
TypeScript
// 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
|
|
|
|
// Angular 2
|
|
import '@angular/common';
|
|
import '@angular/core';
|
|
import '@angular/forms';
|
|
import '@angular/platform-browser';
|
|
import '@angular/platform-browser-dynamic';
|
|
|
|
// RxJS
|
|
import 'rxjs/add/operator/map';
|
|
import 'rxjs/add/operator/mergeMap';
|
|
|
|
if ('production' === ENV) {
|
|
// Production
|
|
|
|
} else {
|
|
// Development
|
|
|
|
}
|