问题 I'm new to babel and trying to transpile my es6 code to work with IE11. But when I run the code in IE11 I get js errors about my forEach code. From what I've read I needed to add the preset @babel/preset-env . I added that to my config file so I'm not sure why it's not transpiling those forEach calls. const path = require('path'); module.exports = { entry: { setupForm: "./Scripts/es6/setupForm.js", prelimForm: "./Scripts/es6/prelimForm.js" }, output: { filename: '[name].js', path: path