]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/vendor.ts
7a8c8423e0f13729a759cc703f645d8f6a7ed3b6
[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/http';
12 import '@angular/router-deprecated';
13
14 // RxJS
15 import 'rxjs/add/operator/map';
16 import 'rxjs/add/operator/mergeMap';
17
18 import 'jquery';
19 import 'bootstrap-loader';