Files
actual/packages/loot-core/webpack/webpack.browser.config.js
Joel Jeremy Marquez aa9c992f2e Part 2 of eslint prefer-const (#1958)
* Part 2 of eslint prefer-const

* Release notes

* Update
2023-11-22 14:28:09 -08:00

109 lines
2.9 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const webpack = require('webpack');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
/** @type {webpack.Configuration} */
module.exports = {
mode: process.env.NODE_ENV === 'development' ? 'development' : 'production',
entry: path.join(__dirname, '../src/server/main.ts'),
context: path.resolve(__dirname, '../../..'),
devtool: false,
output: {
path: path.resolve(path.join(__dirname, '/../lib-dist/browser')),
library: 'backend',
publicPath: '/kcab/',
},
stats: {
errorDetails: true,
},
resolve: {
extensions: [
'.web.js',
'.web.ts',
'.web.tsx',
'.js',
'.ts',
'.tsx',
'.json',
],
fallback: {
assert: require.resolve('assert/'),
buffer: require.resolve('buffer/'),
// used by sql.js, but only if the 'crypto' global is not defined
// used by adm-zip for ZipCrypto, but we dont use that
crypto: false,
dgram: false,
fs: require.resolve('memfs'),
net: false,
path: require.resolve('path-browserify'),
process: require.resolve('process/browser'),
stream: require.resolve('stream-browserify'),
tls: false,
// used by memfs in a check which we can ignore I think
url: false,
zlib: require.resolve('browserify-zlib'),
// used by xml2js
timers: false,
},
},
module: {
rules: [
{
test: /\.m?[tj]sx?$/,
exclude: /node_modules/,
use: {
loader: 'swc-loader',
},
},
{
test: /\.pegjs$/,
use: { loader: path.resolve(__dirname, '../peg-loader.js') },
},
],
},
optimization: {
chunkIds: 'named',
minimize:
process.env.CI === 'true' || process.env.NODE_ENV !== 'development',
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: {
compress: false,
mangle: true,
},
}),
],
},
plugins: [
new webpack.DefinePlugin({
'process.env': '{}',
'process.env.IS_DEV': JSON.stringify(
process.env.NODE_ENV === 'development',
),
'process.env.PUBLIC_URL': JSON.stringify(process.env.PUBLIC_URL || '/'),
'process.env.ACTUAL_DATA_DIR': JSON.stringify('/'),
'process.env.ACTUAL_DOCUMENT_DIR': JSON.stringify('/documents'),
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
process: 'process/browser',
}),
new webpack.SourceMapDevToolPlugin({
filename: '[file].map',
exclude: /xfo.kcab/,
}),
new webpack.IgnorePlugin({
resourceRegExp: /worker_threads|original-fs/,
}),
new BundleAnalyzerPlugin({
analyzerMode: 'disabled',
generateStatsFile: true,
}),
],
};