2024-04-18 11:21:07 +02:00
|
|
|
const path = require('path');
|
|
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
const GlobEntries = require('webpack-glob-entries');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: 'production',
|
2025-01-29 13:08:20 +01:00
|
|
|
entry: GlobEntries('./src/use_cases/**/*.ts'), // Generates multiple entry for each test
|
2024-04-18 11:21:07 +02:00
|
|
|
output: {
|
|
|
|
path: path.join(__dirname, 'dist'),
|
|
|
|
libraryTarget: 'commonjs',
|
|
|
|
filename: '[name].js',
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
extensions: ['.ts', '.js'],
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
|
|
|
use: 'babel-loader',
|
|
|
|
exclude: /node_modules/,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
target: 'web',
|
|
|
|
externals: /^(k6|https?\:\/\/)(\/.*)?/,
|
|
|
|
// Generate map files for compiled scripts
|
|
|
|
devtool: "source-map",
|
|
|
|
stats: {
|
|
|
|
colors: true,
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new CleanWebpackPlugin(),
|
|
|
|
],
|
|
|
|
optimization: {
|
|
|
|
// Don't minimize, as it's not used in the browser
|
|
|
|
minimize: false,
|
|
|
|
},
|
|
|
|
};
|