Created
August 9, 2017 21:23
-
-
Save satyagraha/5544424965c41f261ac245a92673aa71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* System configuration for Angular samples | |
* Adjust as necessary for your application needs. | |
*/ | |
(function (global) { | |
System.config({ | |
paths: { | |
// paths serve as alias | |
'npm:': 'node_modules/' | |
}, | |
// map tells the System loader where to look for things | |
map: { | |
// our app is within the app folder | |
'app': 'app', | |
// angular bundles | |
'@angular/core': 'npm:@angular/core/bundles/core.umd.js', | |
'@angular/common': 'npm:@angular/common/bundles/common.umd.js', | |
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js', | |
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js', | |
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js', | |
'@angular/http': 'npm:@angular/http/bundles/http.umd.js', | |
'@angular/router': 'npm:@angular/router/bundles/router.umd.js', | |
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js', | |
// other libraries | |
'rxjs': 'npm:rxjs', | |
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js', | |
'd3': 'npm:d3', | |
}, | |
// packages tells the System loader how to load when no filename and/or no extension | |
packages: { | |
app: { | |
defaultExtension: 'js', | |
meta: { | |
'./*.js': { | |
loader: 'systemjs-angular-loader.js' | |
} | |
} | |
}, | |
d3: { | |
defaultExtension: 'js', | |
main: 'build/d3.js', | |
}, | |
rxjs: { | |
defaultExtension: 'js' | |
} | |
} | |
}); | |
})(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment