I have the following webpack.config.ts:
webpack.config.ts
var webpack = require( \'webpack\' ); var path = require( \'path\' ); module.exports = { entry: [
Use webpack-node-externals.
const nodeExternals = require('webpack-node-externals'); { target: 'node', externals: [nodeExternals()], }
https://www.npmjs.com/package/webpack-node-externals