我正在通过关于angular.io的一步一步的教程(角度2).我使用的是typcript.尝试编译时出现以下错误:
原文链接:https://www.f2er.com/angularjs/142934.html找不到外部模块’angular2 / angular2′
使用watch命令.
main.ts
import {Component,View,bootstrap} from 'angular2/angular2'; @Component({ selector: 'my-app' }) @View({ template: '<h1>My first Angular 2 App</h1>' }) class AppComponent { } bootstrap(AppComponent);
的index.html
<!DOCTYPE html> <html> <head> <script src="https://jspm.io/system@0.16.js"></script> <script src="https://code.angularjs.org/2.0.0-alpha.23/angular2.dev.js"></script> </head> <body> <my-app></my-app> <script> System.import('main'); </script> </body> </html>
Q为什么发生这个错误?