嗨更新到最新的WebStorm,現在我收到此錯誤:WebStorm 2016.3錯誤:裝飾實驗的支持是一個特點,就是在將來的版本中改變
Error:(52, 14) TS1219:Experimental support for decorators
is a feature that is subject to change in a future release.
Set the 'experimentalDecorators' option to remove this warning.
但在我tsConfig experimentalDecorators
是設置爲true:
{
"version": "1.5.0",
"compilerOptions": {
//...,
"experimentalDecorators": true, // <======== HERE
//...,
},
"files": [
//...
],
"exclude": [ "node_modules" ]
}
您可以嘗試[此答案](http://stackoverflow.com/a/35660772/2435473)? –
您的tsconfig.json不包含項目文件 – anstarovoyt
@ anstarovoyt你是什麼意思? – commonSenseCode