Last active
August 29, 2015 14:13
-
-
Save rolaveric/40f56ceaf000aec3acb6 to your computer and use it in GitHub Desktop.
Example of a SystemJS configuration file
This file contains hidden or 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
| // Configure module loader | |
| System.config({ | |
| baseURL: '/app/', | |
| // Set paths for third-party libraries as modules | |
| paths: { | |
| 'angular': 'bower_components/angular/angular.js', | |
| 'angular-route': 'bower_components/angular-route/angular-route.js' | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment