解决 React 中 Babel 配置警告

大家当 create-react-app 后,可能会在 npm start 的时候会抛出一个关于babel 的警告。

One of your dependencies, babel-preset-react-app, is importing the "@babel/plugin-proposal private-property-in-object" package without declaring it in its dependencies. This is currently working because "@babel/plugin-proposal-private-property-in-object" is already in your node_modules folder for unrelated reasons, but it may break at any time.

平时我看到这个错误都是不怎么管,并不影响项目生成。后来我在 React 的 GitHub 上翻到了解决方案。

解决思路

package.json的”eslintConfig“中添加如下内容:

"parserOptions": {
      "babelOptions": {
         "presets": [
          ["babel-preset-react-app", false],
          ["babel-preset-react-app/prod"]
        ]
      }
    }

请根据 json 的语法,在前一项添加,符号

这样就不会报错了。

上一篇
下一篇