]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/vendor.ts
Improve the login form
[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
15import 'rxjs/add/operator/map';
16import 'rxjs/add/operator/mergeMap';
17
18import 'jquery';
19import 'bootstrap-loader';
c21f59d3
C
20import 'jquery.ui.widget/jquery.ui.widget';
21import 'blueimp-file-upload';