我正在使用WebStorm和webpack,因为我的tsconfig设置为node_modules,所以WebStorm不会重新确定我的任何模块的路径,因此与WebStorm捆绑在一起的TypeScript会发出错误,就像我在附件中看到的那样......
tsconfig.json
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"sourceMap": true,
"noResolve": false
},
"filesGlob": [
"./**/*.ts",
"!./node_modules"
],
"exclude": [
"node_modules",
"typings"
],
"compileOnSave": true,
"buildOnSave": true
}
Webstorm中的错误:
想知道是否有办法让Webstorm成为Webpack并使用TypeScript识别ng2 ...
TX
肖恩
答案 0 :(得分:1)
回复的答案......它刚刚在WebStorm最新EA中修复...版本144.3143.5问候