使用TypeScript 2.1.4和WebStorm 2016.3.2,我收到此错误:
在某些文件中Warning: Cannot find parent tsconfig.json
。
如果我手动调用tsc
,它会编译好没有这个问题,但是在IDE中它导致某些ES6功能无法识别(Promise,Map等)。
这是tsconfig:
{
"compilerOptions": {
"target": "es6",
"lib": ["es6"],
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
},
"files": [
"app/**/*.ts"
]
}
我知道之前已经提到过:Warning: Cannot find parent tsconfig.json但是接受的解决方案是使用WebStorm 2016.3.2(我正在使用的版本)。