を動作していないコアディレクトリ変更:app.component.tsからangular2 /私が使用している場合
import {Component} from 'angular2/core';
を私のアプリが正常に実行されたされますが、コンパイラがエラースロー:(1、25)TS2307を:することはできませんfind module 'angular2/core'コアファイルはnode_modules/angular2/coreディレクトリにあります。
コアディレクトリを変更すると、アプリケーションが動作しませんが、コンパイラは正常です! 私はANGULAR: 5 MIN QUICKSTART
私tsconfig.jsonに取り組んでいます:
{
"compilerOptions": {
"target": "es6",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
あなたはtsconfig.jsonファイルのコンテンツを提供してもらえますか?ありがとう! –