为了账号安全,请及时绑定邮箱和手机立即绑定

使用webpack和babel时报错

使用webpack和babel时报错

眼眸繁星 2018-12-21 19:14:45
初学webpack,用babel将es6转化为es5时报错:ERROR in ./entry.jsModule build failed: Error: Cannot find module 'core-js/library/fn/get-iterator'重装babel-core也不管用webpack配置为:module.exports = {    entry: './entry.js',    output: {        filename: 'bundle.js'    },    //devtool: 'source-map',    module: {        loaders: [{            test: /\.css$/,            loader: 'style-loader!css-loader'        },{            test: /\.js$/,            exclude: /node_modules/,            loader: 'babel-loader'        }]    }}.babelrc内容为:{"presets": ["es2015"]}entry.js为:var a = require('./a.js');require('./index.css');let app = document.getElementById('app');app.innerHTML = '<p>hello webpack!</p>' + a.a;
查看完整描述

1 回答

?
慕沐林林

TA贡献2016条经验 获得超9个赞

答案网上很多,但是可以告诉你的是 babel 即便把es6转换成es5 兼容ie的时候 也会有问题...慎用


查看完整回答
反对 回复 2019-01-09
  • 1 回答
  • 0 关注
  • 700 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信