Can't seem to map systemjs to point to core.umd.js
See original GitHub issueUsing angular2 and jspm I can’t seem to point to the new google maps main file: core.umd.js (systemjs keep on trying to load core.js instead of core.umd.js)
if I manually copy core.umd.js > core.js all is well… (but that’s not a solution of course).
my setup is:
map: {
"angular2-google-maps": "npm:angular2-google-maps@0.14.0/core",
packages: {
"StudioDashboard": {
"main": "StudioDashboard.js"
},
"angular2-google-maps": {
"defaultExtension": "js"
},
for the complete config see: https://github.com/born2net/studioDashboard/blob/master/jspm.config.js
any suggestions are appreciated,
regards
Sean
Issue Analytics
- State:
- Created 7 years ago
- Comments:14 (4 by maintainers)
Top Results From Across the Web
Can't seem to map systemjs to point to core.umd.js · Issue #621
Using angular2 and jspm I can't seem to point to the new google maps main file: core.umd.js (systemjs keep on trying to load...
Read more >systemjs/systemjs - Gitter
Hello, I am in need of loading a module from an AWS S3 bucket (not http) and am thinking of a SystemJS plugin...
Read more >getting source maps of dependencies to work with angular2 ...
My goal is to have an angular2 project setup where I can debug into the source code of dependencies (present in the node_modules...
Read more >Angular first course issue - JavaScript - SitePoint Forums
I follow all the instruction to the dot, so I think, I am new to angular, I am a mainframe programmer for 30...
Read more >Error when loading TabStrip for angular 2 in Kendo UI for jQuery
Error: (SystemJS) Can't resolve all parameters for e: (?). ... '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@born2net i used
import {SebmGoogleMap} from 'angular2-google-maps/core/directives';
orimport {AgmCoreModule} from 'angular2-google-maps/core/core-module';
Mapping:
'angular2-google-maps': 'node_modules/angular2-google-maps@0.15.0',
It may be a good idea to add this to the getting started guide for people who don’t want to use the Angular CLI.