为了账号安全,请及时绑定邮箱和手机立即绑定

使用装饰器@报错,已经运行了eject,安装依赖安装课程步骤来的

 安装了两个依赖包,也设置了.babelrc,使用@时,运行报错Support for the experimental syntax 'decorators-legacy' isn't currently enabled,找了百度的解决方法,添加

 "plugins": [
      [
        "@babel/plugin-proposal-decorators",
        {
          "legacy": true
        }
      ]
    ],

不可解决。。请问怎么回事啊??

正在回答

1 回答

这个插件不是添加在 .babelrc

需要添加在 package.json 中。

"babel": {
  "presets": [
    "react-app"
  ],
  "plugins": [
    [
      "@babel/plugin-proposal-decorators",
      {
        "legacy": true
      }
    ]
  ]
},


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

使用装饰器@报错,已经运行了eject,安装依赖安装课程步骤来的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信