error TS1219: Experimental support for decorators is a feature

来源:互联网 发布:淘宝店铺销量排行 编辑:程序博客网 时间:2024/05/16 17:03

在sublime 下 编辑typescript的decorator,

class Test{    @Override1('test')    name:string = 'pat';}

进行编译时,报以下错误:

error TS1219: Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.

解决方法:
在编译命令后加上编译参数:

"cmd": ["tsc.cmd", "$file","--experimentalDecorators","--emitDecoratorMetadata"]
0 0
原创粉丝点击