下午自己学习了下mobx ,然后接触到了decorator装饰器,接着用visual studio code 写mobx 和 react的代码;写到如下的代码时:
Experimental 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编辑器就不会显示那条红线了。