未找到 angular2 traceur

angular2 traceur not found

我在 angular2 中导入了一些模块并且有错误。未找到示踪剂。示例 angular2-google-maps system.config.js

var map = {
...
'angular2-google-maps/core': 'node_modules/angular2-google-maps/src/core',
...
};
var packages = {
  'angular2-google-maps/core': {
    main: 'core-module.ts', // or index.ts
    defaultExtension: 'ts'
  },
  ... 
};

app/app.module.ts

import { AgmCoreModule } from 'angular2-google-maps/core';

错误: http://localhost:3000/traceur 404 未找到

如何在angular2中正确设置模块?

如您在 demo plunker 中所见,您必须导入 umd 文件才能使其正常工作。导入 TS 文件永远行不通,因为您的浏览器不需要 typescript,它需要 Javascript 个。

var map = {
...
'angular2-google-maps/core': 'node_modules/angular2-google-maps/core/core.umd.js',
...
};
var packages = {
  ... //NOT CHANGED
};