Experimental support for decorators is a feature that is subject to change in a future release. Set the ‘experimentalDecorators’ option to remove this warning.
編輯器竟然在自定義類哪里報(bào)了個(gè)紅線的warning非竿,于是我找到了如下的方法解決:
在項(xiàng)目目錄下新建tsconfig.json文件音五,然后加入如下配置就可以完美解決了。
{
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true
}
}
重新打開vsc編輯器就不會(huì)顯示那條紅線了奕纫。