annotate src/systemjs.config.js @ 55:308c96f734c8 ng2-table

first steps to importing state from URL.
author casties
date Mon, 27 Mar 2017 14:17:55 +0200
parents 738e90238443
children 7b9d616695d3
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'
52
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
40 },
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
41 'ng2-bootstrap': {
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
42 format: 'cjs',
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
43 main: 'bundles/ng2-bootstrap.umd.js',
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
44 defaultExtension: 'js'
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
45 },
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
46 'ng2-table': {
738e90238443 ng2-table version mostly works (without page-n-of-m, problems with columns).
casties
parents: 51
diff changeset
47 defaultExtension: 'js'
47
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
48 }
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
49 }
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
50 });
b65a031c4967 first step to angular2-final (2.4) version of the query browser.
casties
parents:
diff changeset
51 })(this);