套装

  1. "@babel/core": "^7.11.1",
  2. "@babel/plugin-transform-runtime": "^7.11.0",
  3. "@babel/polyfill": "^7.10.4",
  4. "@babel/preset-env": "^7.11.0", // es6
  5. "@babel/preset-react": "^7.10.4", // jsx编译
  6. "@babel/runtime": "^7.11.2",
  7. "babel-loader": "^8.1.0",

安装各种版本不匹配报错

image.png
babel-loader的版本使用的是8.x版本之后,用的是@babel/core 而不再使用 babel-core;

https://www.webpackjs.com/loaders/babel-loader/

自定义babel

待补充