VSCode工具React项目报 [ts] Experimental support for decorators is a feature that is subject to change in

1.问题描述
VSCode工具React项目报 [ts] Experimental support for decorators is a feature that is subject to change in
2.解决方法
在文件根目录下创建一个文件名为jsconfig.json的文件,文件内容:

{    
      "complierOptions":{  
            "experimentalDecorators":true    
       }
 }

VSCode工具React项目报 [ts] Experimental support for decorators is a feature that is subject to change in
然后重启VSCode就好了
VSCode工具React项目报 [ts] Experimental support for decorators is a feature that is subject to change in