16 lines
358 B
TypeScript
16 lines
358 B
TypeScript
// #docregion
|
|
// Angular 2
|
|
import '@angular/platform-browser';
|
|
import '@angular/platform-browser-dynamic';
|
|
import '@angular/core';
|
|
import '@angular/common';
|
|
import '@angular/http';
|
|
import '@angular/router-deprecated';
|
|
|
|
// RxJS
|
|
import 'rxjs';
|
|
|
|
// Other vendors for example jQuery, Lodash or Bootstrap
|
|
// You can import js, ts, css, sass, ...
|
|
// #enddocregion
|