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