色々やってみた結果
解決できませんでした
2019/02/16
解決しました!
概要
VSCode + VeturでVue.jsの開発。
experimentalDecoratorsをtrueにしているのに以下のエラーが消えない。
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.json の experimentalDecorators をtrue
tsconfig.json
{
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true,
}
}
だめ
setting の Javascript › Implicit Project Config: Experimental Decorators を true
jsconfig.jsonを置いてみる
To fix it, please try creating a jsconfig.json file at the root of your project with the contents:
jsconfig.json
{
"compilerOptions": {
"experimentalDecorators": true
}
}
だめ
結論
コンパイルが通らないとかそういうことはないので問題ないっちゃないんですが、うっとおしい。
Veturのバグですかね。。。
諦めてVueはAtomか何かで開発するか
追記 2019/02/16
解決しました!
ワークスペースでプロジェクトのフォルダを追加していたのですが、
これをファイル -> 開くでプロジェクトのフォルダを直接開いたらエラーが出なくなりました。
@rema424 さん、ありがとうございました!