forked from nuke-web3/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.main.config.js
58 lines (53 loc) · 1.38 KB
/
webpack.main.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
// Copyright 2017-2020 @polkadot/apps authors & contributors
// SPDX-License-Identifier: Apache-2.0
/* eslint-disable camelcase */
const TerserPlugin = require('terser-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('path');
const ENV = process.env.NODE_ENV || 'production';
const isProd = ENV === 'production';
function createWebpack () {
return [
{
entry: {
electron: './src/electron',
preload: './src/preload.ts'
},
mode: ENV,
module: {
rules: [
{
exclude: /(node_modules)/,
test: /\.(js|ts|tsx)$/,
use: [
require.resolve('thread-loader'),
{
loader: require.resolve('babel-loader'),
options: require('@polkadot/dev/config/babel')
}
]
}
]
},
node: {
__dirname: false
},
optimization: {
minimize: !!isProd,
minimizer: [new TerserPlugin()]
},
output: {
filename: '[name].js',
path: path.join(__dirname, '/build')
},
plugins: [
new CopyWebpackPlugin({ patterns: [{ from: 'assets' }] })
],
resolve: {
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx']
},
target: 'electron-main'
}
];
}
module.exports = createWebpack();