Created
February 1, 2018 16:59
-
-
Save pmaoui/4226c871bd0d4f8963ecf267a09898b7 to your computer and use it in GitHub Desktop.
AngularJS to Angular5 — Upgrading a large application
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
(function (global) { | |
const pathPrefix = (typeof window !== 'undefined' ? '/' : './'); | |
System.config({ | |
baseURL: '/dist', | |
defaultJSExtensions: true, | |
paths: { | |
// paths serve as alias | |
'npm:*': pathPrefix + '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', | |
'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js', | |
// other libraries | |
rxjs: 'npm:rxjs', | |
'zone.js': 'npm:zone.js/dist/zone.js', | |
'reflect-metadata': 'npm:reflect-metadata/Reflect.js', | |
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js' | |
}, | |
// packages tells the System loader how to load when no filename and/or no extension | |
packages: { | |
app: { | |
defaultExtension: 'js', | |
main: './main./js' | |
}, | |
rxjs: { | |
defaultExtension: 'js' | |
} | |
} | |
}); | |
})(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment