我有一个Angular 2.4 + ASP.NET MVC Core项目(针对.NET 4.5)。该项目构建和工作正常,没有任何tsconfig.json文件。当我添加它时,构建在.ts文件中失败并出现此类错误:
TS2307 Cannot find module '@angular/core'.
tsconfig.json文件:
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"exclude": [
"node_modules",
"wwwroot"
]
}
我还尝试了"module": "system"
或"module": "commonjs"
"moduleResolution": "node"
设置,但这些都没有做任何好处。项目正在使用SystemJS。
我做错了什么?