-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
114 lines (108 loc) · 3.12 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
"use strict";
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
// Source maps are resource heavy and can cause
// out of memory issue for large source files.
const shouldUseSourceMap = Boolean(process.env.GENERATE_SOURCEMAP);
module.exports = function (webpackEnv) {
const isEnvDevelopment = webpackEnv.development === true;
const isEnvProduction = webpackEnv.production === true;
const buildMode = isEnvProduction
? "production"
: isEnvDevelopment && "development";
const sourceMapModule = isEnvProduction
? shouldUseSourceMap
? "source-map"
: false
: isEnvDevelopment && "cheap-module-source-map";
return [
{
mode: buildMode,
devtool: sourceMapModule,
entry: {index: path.resolve("src/index.tsx")},
target: "electron-renderer",
resolve: {
extensions: [".mjs", ".js", ".ts", ".tsx", ".jsx"],
},
output: {
path: path.resolve("dist/"),
pathinfo: isEnvDevelopment,
filename: "[name].js",
// this defaults to 'window', but by setting it to 'this' then
// module chunks which are built will work in web workers as well.
globalObject: "this",
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
module: {
strictExportPresence: true,
rules: [
{
test: /\.(ts|tsx)$/,
loader: require.resolve("babel-loader"),
options: {
presets: [require.resolve("@babel/preset-react")],
cacheDirectory: true,
compact: isEnvProduction,
},
},
],
},
plugins: [
new HtmlWebpackPlugin({
inject: true,
template: path.resolve("public/index.html"),
}),
],
},
{
mode: buildMode,
entry: {
main: path.resolve("src/main.ts"),
preload: path.resolve("src/preload.ts"),
},
target: "electron-main",
devtool: sourceMapModule,
resolve: {
extensions: [".mjs", ".js", ".ts", ".node"],
},
output: {
path: path.resolve("dist/"),
pathinfo: isEnvDevelopment,
filename: "[name].js",
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
module: {
rules: [
{
test: /\.(ts)$/,
loader: require.resolve("babel-loader"),
options: {
presets: [require.resolve("@babel/preset-typescript")],
cacheDirectory: true,
compact: isEnvProduction,
},
},
{
test: /\.(m?js|node)$/,
parser: {amd: false},
use: {
// Extract native node modules to the build output
loader: require.resolve("@vercel/webpack-asset-relocator-loader"),
options: {
outputAssetBase: "assets",
production: isEnvProduction,
},
},
},
],
},
},
];
};