Code Monkey home page Code Monkey logo

Comments (7)

babel-bot avatar babel-bot commented on June 10, 2024

Hey @jhgeluk! We really appreciate you taking the time to report an issue. The collaborators on this project attempt to help as many people as possible, but we're a limited number of volunteers, so it's possible this won't be addressed swiftly.

If you need any help, or just have general Babel or JavaScript questions, we have a vibrant Slack community that typically always has someone willing to help. You can sign-up here for an invite.

from babel.

nicolo-ribaudo avatar nicolo-ribaudo commented on June 10, 2024

When using Webpack, import&export are left untouched by Babel because webpack transforms them. I suggest asking in the Webpack repository if they have an option similar to https://babeljs.io/docs/babel-plugin-transform-modules-commonjs#importinterop. Maybe you can find some info in webpack/webpack#7973.

from babel.

nicolo-ribaudo avatar nicolo-ribaudo commented on June 10, 2024

You can explicitly add @babel/plugin-transform-modules-commonjs to the Babel config to force Babel to transpile ESM to CJS also when using webpack, but I recommend trying an alternative solution because webpack won't be able to tree-shake your imports anymore if they are first transpiled by Babel.

from babel.

jhgeluk avatar jhgeluk commented on June 10, 2024

Thanks for your quick reply. I've tried @babel/plugin-transform-modules-commonjs but that causes a whole new set of problems, since it will look for files that are not in the dist folder.

from babel.

jhgeluk avatar jhgeluk commented on June 10, 2024

Hi @nicolo-ribaudo ,

I was wondering if you could please help me. I've given up on the idea of bundling the code with webpack, since it will take too much time for it to be resolved.

So I'm just transpiling it with babel, like so: npx babel src/server --out-dir dist/server --keep-file-extension.

But when I do a request to my server, I get this response:

Error: require() of ES Module /src/services/pdf/index.mjs not supported.\nInstead change the require of /src/services/pdf/index.mjs to a dynamic import() which is available in all CommonJS modules.

I don't understand why this does not work, since I'm using dynamic imports and not require statements.

All my code worked when I was using:

require('@babel/register')({
	presets: ['@babel/preset-env'],
});

But it's not advised to use that in a production environment.

from babel.

nicolo-ribaudo avatar nicolo-ribaudo commented on June 10, 2024

Can you try adding exclude: ["transform-dynamic-import"] to the babel/preset-env options, so that it does not transform dynamic imports to require()?

from babel.

jhgeluk avatar jhgeluk commented on June 10, 2024

Thanks again for the quick response.

Now I get this error:
require is not defined in ES module scope, you can use import instead

from babel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.