Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Last active May 19, 2018 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squadwuschel/430955f69f237dc264a9f6a68a138f5f to your computer and use it in GitHub Desktop.
Save squadwuschel/430955f69f237dc264a9f6a68a138f5f to your computer and use it in GitHub Desktop.
Angular 2.1.1 SystemJs.Config.js
/**
* 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 : 'ScriptsApp', // 'dist',
// 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',
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: { main: './boot.js', defaultExtension: 'js' },
rxjs: { defaultExtension: 'js' }
}
});
})(this);
@brandondtran
Copy link

This file is confusing! Do you know why I'm getting this error:
"Error: Unable to dynamically transpile ES module
A loader plugin needs to be configured via SystemJS.config({ transpiler: 'transpiler-module' })."

What transpiler module should I be using?!?

@rb0w
Copy link

rb0w commented Feb 16, 2017

This file works.
Before, I was confused too, mainly due to the transition from older style of systemjs.config.js and the other configs.
Are you using *.ts for your project? Or using typescript in global (npm i -g typescript)?

I get this error when I tried to load '@angular/stuff' under

System.config({
    :
    packages: {
        '@angular/core': { ... },
        '@angular/platform-browser-dynamic': { ... },
        ...
    }
});

Move them into map as shown in this gist solves it for me.
Hope this helps.

@bhagya-98
Copy link

C:\Coursera\Bootstrap4\conFusion>npm install font-awesome --save-dev
npm ERR! Unexpected token < in JSON at position 3

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Bhagyashree K\AppData\Roaming\npm-cache_logs\2018-05-19T06_20_31_807Z-debug.log

How do i correct this error?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment