Does anybody know if there\'s been any breaking changes to the http between alpha 45 and alpha 48? I\'ve been searching around and I didn\'t find anything. My problem is tha
In contrast to what what's written above, I found that I needed to use
System.config({
packages: {
'app': {defaultExtension: 'js'},
'node_modules': {defaultExtension: 'js'}
},
paths: {
'rxjs/*' : 'node_modules/rxjs/*.js'
}
});
The node_modules
defaultExtension
was the critical think for me (I dunno why the rxjs/*
path doesn't add the .js
but hey ho.)
This works from 48 to the latest 52.