错误信息:Error:(21, 3) TS1219: Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.
解决方案:在项目根目录新建 jsconfig.json 文件,写入一下内容,重启开发工具即可。
{
"compilerOptions": {
"experimentalDecorators": true
}
}
本文解决了一个常见的TypeScript错误TS1219,该错误涉及到实验性装饰器的支持。通过在项目根目录下创建jsconfig.json文件并设置'experimentalDecorators'选项为true,可以消除此警告。

被折叠的 条评论
为什么被折叠?



