dbgate/packages/api/webpack.config.js
Jan Prochazka 594837573e #28
2020-06-09 20:54:14 +02:00

48 lines
869 B
JavaScript

var webpack = require('webpack');
var path = require('path');
var config = {
context: __dirname + '/src',
entry: {
app: './index.js',
},
target: 'node',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
libraryTarget: 'commonjs2',
},
optimization: {
minimize: false,
},
// module: {
// rules: [
// {
// test: /\.js$/,
// exclude: /node_modules/
// },
// ],
// },
plugins: [
new webpack.IgnorePlugin({
checkResource(resource) {
const lazyImports = ['pg-native', 'uws'];
if (!lazyImports.includes(resource)) {
return false;
}
try {
require.resolve(resource);
} catch (err) {
return true;
}
return false;
},
}),
],
};
module.exports = config;