forked from MoeFE/GoogleTranslate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.ts
75 lines (70 loc) · 1.58 KB
/
webpack.config.ts
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
import path from 'path';
import webpack from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
const isDevelopment = process.env.NODE_ENV === 'development';
const commonConfig: webpack.Configuration = {
mode: isDevelopment ? 'development' : 'production',
watchOptions: {
ignored: [/node_modules/, /dist/],
},
node: {
__dirname: false,
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.(png|jpg|gif)$/,
use: ['file-loader'],
},
{
test: /\.node$/,
loader: 'native-ext-loader',
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.node'],
},
output: {
publicPath: './',
filename: '[name].js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new webpack.DefinePlugin({
__public: isDevelopment
? `'${__dirname}${path.sep}public'`.replace(/\\/g, '\\\\')
: `require('path').resolve(process.resourcesPath, 'public')`,
}),
],
devtool: 'source-map',
};
const configs: webpack.Configuration[] = [
{
...commonConfig,
entry: { index: './src/main' },
target: 'electron-main',
},
{
...commonConfig,
entry: { settings: './src/settings' },
target: 'electron-renderer',
plugins: [
...(commonConfig.plugins || []),
new HtmlWebpackPlugin({
filename: 'settings.html',
}),
],
},
{
...commonConfig,
entry: { preload: './src/preload' },
target: 'electron-renderer',
},
];
module.exports = configs;