annotate src/systemjs.config.js @ 51:1245781e2575 ng2-table

working on updating ng2-table.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Thu, 23 Mar 2017 11:04:48 +0100
parents b65a031c4967
children 738e90238443
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
1 /**
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
2 * System configuration for Angular samples
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
3 * Adjust as necessary for your application needs.
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
4 */
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
5 (function (global) {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
6 System.config({
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
7 paths: {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
8 // paths serve as alias
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
9 'npm:': 'node_modules/'
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
10 },
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
11 // map tells the System loader where to look for things
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
12 map: {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
13 // our app is within the app folder
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
14 app: 'app',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
15
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
16 // angular bundles
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
17 '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
18 '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
19 '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
20 '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
21 '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
22 '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
23 '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
24 '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
25
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
26 // other libraries
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
27 'rxjs': 'npm:rxjs',
51
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 47
diff changeset
28 'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 47
diff changeset
29
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 47
diff changeset
30 'ng2-bootstrap': 'npm:ng2-bootstrap',
1245781e2575 working on updating ng2-table.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 47
diff changeset
31 'ng2-table': 'npm:ng2-table'
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
32 },
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
33 // packages tells the System loader how to load when no filename and/or no extension
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
34 packages: {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
35 app: {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
36 defaultExtension: 'js'
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
37 },
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
38 rxjs: {
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
39 defaultExtension: 'js'
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
40 }
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
41 }
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
42 });
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
43 })(this);