]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/vendor.ts
Client: avoid "quit friends" to appear during the pending request
[github/Chocobozzz/PeerTube.git] / client / src / vendor.ts
CommitLineData
4a6995be
C
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
7import '@angular/platform-browser';
8import '@angular/platform-browser-dynamic';
9import '@angular/core';
10import '@angular/common';
0f6da32b 11import '@angular/forms';
4a6995be 12import '@angular/http';
00a44645 13import '@angular/router';
4a6995be 14
ab32b0fc
C
15import '@angularclass/hmr';
16
4a6995be 17// RxJS
5555f886
C
18import 'rxjs/Observable';
19import 'rxjs/Subject';
20import 'rxjs/add/operator/catch';
ab32b0fc 21import 'rxjs/add/operator/mergeMap';
4a6995be 22import 'rxjs/add/operator/map';
528a9efa 23import 'rxjs/add/observable/throw';
4a6995be 24
4a6995be 25import 'bootstrap-loader';
e822fdae 26import 'ng2-file-upload';