在ts文件中使用装饰器,报错:
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.

解决:在tsconfig.json中(在项目目录下通过tsc --init命令生成)找到experimentalDecorators,取消对它的配置注释

typescript使用装饰器报错Experimental support for decorators is a feature that is subject to change in a...
本文介绍了解决在TypeScript文件中使用装饰器时遇到的警告问题。具体来说,当使用装饰器特性时会收到一条实验性支持的警告,文中详细说明了如何通过配置tsconfig.json文件来消除该警告。





