How to Configure webpack4 to Convert ES6 to ES5
发布于 2026-07-06 08:57:09
1 次浏览
- Install the following modules (webpack 4.x | babel-loader 8.x | babel 7.x)
npm i -D babel-loader @babel/core @babel/preset-env
Or install the following modules (webpack 4.x | babel-loader 8.x | babel 7.x)
npm i -D babel-loader@7 babel-core babel-preset-env
- Write the following configuration in webpack.config.js
rules: [
{ "test":/\\.m?js$/, use: {loader:"babel-loader", options:{presets:["@babel/preset-env"]}}, exclude:/node_modules|bower_components/}
]
暂无评论。