-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
102 lines (99 loc) · 2.39 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
const webpack = require('webpack')
const path = require('path')
const PnpWebpackPlugin = require('pnp-webpack-plugin')
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ContextReplacementPlugin = webpack.ContextReplacementPlugin
const commonConfig = {
mode: 'development',
devtool: 'source-map',
plugins: [new NodePolyfillPlugin()],
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build'),
},
node: {
__dirname: false,
},
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
],
},
{
test: /\.(js|jsx|ts|tsx)$/,
loader: require.resolve('ts-loader'),
options: PnpWebpackPlugin.tsLoaderOptions({
configFile: path.join(__dirname, 'tsconfig.json'),
// Disable the type-checking, as it will be checked by another module
transpileOnly: true,
}),
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx', '.css'],
plugins: [PnpWebpackPlugin],
alias: {
react: path.resolve('./node_modules/react'),
},
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
title: 'pkg.productName',
template: 'app/renderer/index.html', // from /public : path.resolve(paths.publicPath, 'index.html'),
}),
new ContextReplacementPlugin(/any-promise/),
new webpack.ContextReplacementPlugin(/about-window/),
],
resolveLoader: {
plugins: [PnpWebpackPlugin.moduleLoader(module)],
},
}
const devServer = {
client: {
overlay: {
errors: true,
warnings: true,
},
progress: true,
},
static: {
directory: path.join(__dirname, 'build'),
publicPath: '/',
},
// port: 8080,
compress: true,
historyApiFallback: true,
allowedHosts: 'localhost',
open: false,
}
module.exports = [
Object.assign(
{
target: 'electron-main',
entry: { main: './app/main/main.ts' },
},
commonConfig,
),
Object.assign(
{
target: 'electron-renderer',
entry: { preload: './app/renderer/index.tsx' },
},
commonConfig,
{ devServer },
),
]