提示:
Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning."
解决:
vs code 设置
"javascript.implicitProjectConfig.experimentalDecorators": true,
tsconfig.json
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true
}