Typescript学习系列---《Set the 'experimentalDecorators' option to remove this warning. [1219]》

  • 添加tsconfig.json文件

{

"compilerOptions": {

"experimentalDecorators": true, // 设置这个属性即可解决问题

"allowJs": true

}

参考:https://www.jianshu.com/p/53e2be3150cc

发布了81 篇原创文章 · 获赞 10 · 访问量 2903

猜你喜欢

转载自blog.csdn.net/A_bad_horse/article/details/104988329