我使用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"
]
}
我想念什么?我尝试了在此论坛中已经提出的解决方案,但是它们没有用。谢谢
答案 0 :(得分:0)
你可以使用 react-app-rewired 来覆盖 webpack。