我正在尝试将Angular2添加到我当前的Angular 1.X项目中.我正在使用yo angular
启用TypeScript的项目.
我安装了所有东西(使用npm install):
我添加了以下配置:
现在,在我的Bootstrap.ts中,我使用:
import {UpgradeAdapter} from 'angular2/upgrade';
打字稿知道如何将它转换成我的.tmp:
var upgrade_1 = require('angular2/upgrade');
但是SystemJS不知道如何加载导入.我收到404错误:
GET http://localhost:9000/node_modules/angular2/upgrade 404 (Not Found)
我的目录结构:
root - .tmp - node_modules - app |-- index.html |-- scripts
我在这里错过了什么?