我已将此版本与npm install angular2-google-maps
一起安装,并将其包含在我的gulpfile中,如下所示:'node_modules/angular2-google-maps/bundles/angular2-google-maps.js',
所以它包括在内但我收到SyntaxError unexpected token<
我的地图结构:
我在此看到:Issue
system.config有问题,但我不知道如何正确设置!
这里是system.config:
/**
* Import angular2 components
*/
System.config({
transpiler: 'typescript',
typescriptOptions: { emitDecoratorMetadata: true },
packages: {
'/angular': {
defaultExtension: 'ts'
}
}
});
System.import('/angular/main')
.then(null, console.error.bind(console));