webpack-node-externals - npm

PHOTO EMBED

Thu Aug 29 2024 13:56:16 GMT+0000 (Coordinated Universal Time)

Saved by @mikefried

// Webpack 5

const nodeExternals = require('webpack-node-externals');
...
module.exports = {
    ...
    externalsPresets: { node: true }, // in order to ignore built-in modules like path, fs, etc.
    externals: [nodeExternals()], // in order to ignore all modules in node_modules folder
    ...
};
content_copyCOPY

https://www.npmjs.com/package/webpack-node-externals