]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/vendor.ts
Server: fix single pod tests
[github/Chocobozzz/PeerTube.git] / client / src / vendor.ts
1 // For vendors for example jQuery, Lodash, angular2-jwt just import them here unless you plan on
2 // chunking vendors files for async loading. You would need to import the async loaded vendors
3 // at the entry point of the async loaded file. Also see custom-typings.d.ts as you also need to
4 // run `typings install x` where `x` is your module
5
6 // Angular 2
7 import '@angular/platform-browser';
8 import '@angular/platform-browser-dynamic';
9 import '@angular/core';
10 import '@angular/common';
11 import '@angular/forms';
12 import '@angular/http';
13 import '@angular/router';
14
15 import '@angularclass/hmr';
16
17 // RxJS
18 import 'rxjs/Observable';
19 import 'rxjs/Subject';
20 import 'rxjs/ReplaySubject';
21 import 'rxjs/add/operator/catch';
22 import 'rxjs/add/operator/mergeMap';
23 import 'rxjs/add/operator/map';
24 import 'rxjs/add/observable/throw';
25
26 import 'bootstrap-loader';
27
28 import 'angular-pipes/src/math/bytes.pipe';
29 import 'ng2-file-upload';
30 import 'video.js';
31 import 'ng2-meta';
32 import 'ng2-bootstrap/pagination';
33 import 'ng2-bootstrap/dropdown';
34 import 'ng2-bootstrap/progressbar';
35 import 'ng2-bootstrap/modal';