]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/vendor.ts
Add issue template
[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
21import 'jquery';
22import 'bootstrap-loader';
c21f59d3
C
23import 'jquery.ui.widget/jquery.ui.widget';
24import 'blueimp-file-upload';