将 plugin-proposal-class-properties 添加到 create-react-app 项目
Posted
技术标签:
【中文标题】将 plugin-proposal-class-properties 添加到 create-react-app 项目【英文标题】:Add plugin-proposal-class-properties to create-react-app project 【发布时间】:2021-02-13 22:48:23 【问题描述】:我使用create-react-app
创建了一个反应项目。
现在,当我在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】:你可以使用 react-app-rewired 来覆盖 webpack。
【讨论】:
以上是关于将 plugin-proposal-class-properties 添加到 create-react-app 项目的主要内容,如果未能解决你的问题,请参考以下文章
Javascript 将正则表达式 \\n 替换为 \n,将 \\t 替换为 \t,将 \\r 替换为 \r 等等