-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
75 lines (73 loc) · 2.04 KB
/
webpack.config.js
File metadata and controls
75 lines (73 loc) · 2.04 KB
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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = (env, argv) => {
const isDevelopment = argv.mode === 'development';
return {
entry: './src/index.tsx',
target: 'electron-renderer',
mode: argv.mode || 'development',
devtool: isDevelopment ? 'inline-source-map' : false,
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
configFile: 'tsconfig.webpack.json',
transpileOnly: isDevelopment, // Faster builds in dev
}
},
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|jpg|jpeg|gif|svg)$/,
type: 'asset/resource',
generator: {
filename: '[name][ext]'
}
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'renderer.js',
path: path.resolve(__dirname, 'build/renderer'),
clean: isDevelopment ? false : true, // Don't clean in dev for faster rebuilds
},
watchOptions: {
ignored: /node_modules/,
poll: 1000, // Check for changes every second
aggregateTimeout: 300, // Delay the rebuild after the first change
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, 'src', 'index.html'),
filename: 'index.html',
inject: 'body',
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, 'assets/icon.png'),
to: path.resolve(__dirname, 'build/renderer/icon.png')
},
{
from: path.resolve(__dirname, 'assets/logoBig.png'),
to: path.resolve(__dirname, 'build/renderer/logoBig.png')
}
]
}),
],
externals: {
electron: 'commonjs2 electron',
},
};
};