From 7f7d6dcbc7fbce6ff6c9171823ebe7a78604e85d Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Mon, 6 Mar 2023 08:29:48 +0300 Subject: vnext: esbuild -> webpack --- vnext/webpack.config.js | 66 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 vnext/webpack.config.js (limited to 'vnext/webpack.config.js') diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js new file mode 100644 index 00000000..d8b7a076 --- /dev/null +++ b/vnext/webpack.config.js @@ -0,0 +1,66 @@ +const ESLintPlugin = require('eslint-webpack-plugin'); +const TerserPlugin = require('terser-webpack-plugin'); + +module.exports = (env, argv) => { + const node_env = process.env.NODE_ENV ? process.env.NODE_ENV : 'development'; + const dev = node_env !== 'production'; + const config = { + mode: node_env, + devtool: dev ? 'source-map' : false, + entry: { + 'scripts': [ + __dirname + '/src/index.js' + ] + }, + output: { + path: __dirname + '/../public', + filename: '[name].js' + }, + module: { + rules: [{ + test: /\.js$/, + exclude: [ + /\bnode_modules\b/, + /\bcore-js\b/, + /\bwebpack\/buildin\b/ + ], + loader: 'babel-loader' + }, { + test: /\.(png|jpe?g|gif|svg)$/i, + use: [ + { + loader: 'file-loader', + }, + ], + }] + }, + plugins: [ + ], + resolve: { + symlinks: false, + extensions: ['.js'] + } + }; + if (dev) { + config.plugins.push( + new ESLintPlugin({ + files: __dirname + '/src', + lintDirtyModulesOnly: true, + failOnWarning: false, + failOnError: true, + fix: false + })); + } + config.optimization = { + minimize: !dev, + minimizer: [ + new TerserPlugin({ + minify: TerserPlugin.swcMinify, + // `terserOptions` options will be passed to `swc` (`@swc/core`) + // Link to options - https://swc.rs/docs/config-js-minify + terserOptions: {}, + }), + ] + }; + return config; +}; -- cgit v1.2.3