美文网首页
RN Exception: Support for the ex

RN Exception: Support for the ex

作者: _凌浩雨 | 来源:发表于2019-09-29 10:03 被阅读0次

异常

Support for the experimental syntax 'decorators-legacy' isn't currently enabled (17:1):
异常.png

解决方法

  1. npm install @babel/plugin-proposal-decorators

  2. 在.babelrc文件中添加

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

相关文章

网友评论

      本文标题:RN Exception: Support for the ex

      本文链接:https://www.haomeiwen.com/subject/ucjbyctx.html