解决vsc写es7中的Decorator报错的方法
2017-09-26 本文已影响140人
cbw100
下午自己学习了下mobx ,然后接触到了decorator装饰器,接着用visual studio code 写mobx 和 react的代码;写到如下的代码时:
image.pngExperimental support for decorators is a feature that is subject to change in a future release. Set the ‘experimentalDecorators’ option to remove this warning.
编辑器竟然在observer哪里报了个红线的warning,于是我找到了如下的方法解决:
在项目目录下新建tsconfig.json文件,然后加入如下配置就可以完美解决了。
{
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true
}
}
重新打开vsc编辑器就不会显示那条红线了。
image.png