将plugin-proposal-class-properties添加到create-react-app项目

时间:2020-10-31 20:03:48

标签: reactjs webpack babeljs create-react-app package.json

我使用create-react-app创建了一个react项目。 现在,当我在package.json中添加某个依赖项时,运行npm start后会出现错误:

Support for the experimental syntax 'classProperties' isn't currently enabled.
Add @babel/plugin-proposal-class-properties (https://git.io/vb4SL) to the 'plugins' section of your Babel config to enable transformation.

我尝试使用npm run eject然后执行npm install --save-dev @babel/plugin-proposal-class-properties,但是即使我用以下命令更新package.json中的babel部分,也无法正常工作:

"babel": {
    "presets": [
      "react-app"
    ],
    "plugins": [
      "@babel/plugin-proposal-class-properties"
    ]
}

我想念什么?我尝试了在此论坛中已经提出的解决方案,但是它们没有用。谢谢

1 个答案:

答案 0 :(得分:0)

你可以使用 react-app-rewired 来覆盖 webpack。