RN Exception: Support for the ex
2019-09-29 本文已影响0人
_凌浩雨
异常
Support for the experimental syntax 'decorators-legacy' isn't currently enabled (17:1):
异常.png
解决方法
-
npm install @babel/plugin-proposal-decorators -
在.babelrc文件中添加
{
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
],
"presets": [
"react-native"
]
}