最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - ESM import on webpackConfig - Stack Overflow

programmeradmin0浏览0评论

I'm building a webpack app and I'm interested in use ESM through the entire app, meaning that build the webpack.config file with ESM imports.

I now this is possible using Babel, but this was before npm added the "type": "module" supporting now ESM imports without babel... I already tried it with Express and it worked but with Webpack I get this:

> ...proyectDirectory/node_modules/webpack-cli/bin/cli.js:93

> require() of ES modules is not supported.

So I was wondering if there is a version of webpack-cli that use import instead of require

I'm building a webpack app and I'm interested in use ESM through the entire app, meaning that build the webpack.config file with ESM imports.

I now this is possible using Babel, but this was before npm added the "type": "module" supporting now ESM imports without babel... I already tried it with Express and it worked but with Webpack I get this:

> ...proyectDirectory/node_modules/webpack-cli/bin/cli.js:93

> require() of ES modules is not supported.

So I was wondering if there is a version of webpack-cli that use import instead of require

Share Improve this question asked Jul 25, 2020 at 3:12 GabuardiGabuardi 631 gold badge1 silver badge5 bronze badges 2
  • Does this answer your question? How can I use ES6 in webpack.config.js? – cyberwombat Commented Jul 29, 2020 at 15:26
  • 1 No, it doesn't - Babel is the ancient way of use ES6 in node.js, now node supports ESM but seems that some libraries have not adapted this. – Gabuardi Commented Jul 30, 2020 at 16:48
Add a ment  | 

2 Answers 2

Reset to default 7

Update to at least webpack-cli 4.5.0. Support for native ESM configuration files has just been added: https://github./webpack/webpack-cli/releases/tag/webpack-cli%404.5.0

This means that if you're using webpack.config.js in a directory with {"type": "module"} in its package.json, it will work.

It will also work if you simply name your file webpack.config.mjs

Webpack CLI is expecting a monJS file. There is experimental support for .mjs file that can be enabled using the experiments.mjs flag but it seems there are a number of issues around that. So you can use webpack by using either no config or using a .cjs config as:

 ./node_modules/.bin/webpack-cli --config webpack.config.cjs

Also keep in mind that things like Jest do not work with esm (as of this date) so you'd need to use another test suite if no babel/esm was desired.

发布评论

评论列表(0)

  1. 暂无评论