]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/vendor.ts
Use ng2-file-upload instead of jquery and add tags support to the video
[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';
11import '@angular/http';
12import '@angular/router-deprecated';
13
14// RxJS
5555f886
C
15import 'rxjs/Observable';
16import 'rxjs/Subject';
17import 'rxjs/add/operator/catch';
4a6995be
C
18import 'rxjs/add/operator/map';
19import 'rxjs/add/operator/mergeMap';
20
4a6995be 21import 'bootstrap-loader';
e822fdae 22import 'ng2-file-upload';