This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
forked from LedgerHQ/ledger-live-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.webpack.config.js
92 lines (89 loc) · 1.89 KB
/
main.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
const path = require("path");
const HardSourceWebpackPlugin = require("hard-source-webpack-plugin");
const babelPlugins = require("./babel.plugins");
const UnusedWebpackPlugin = require("unused-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const babelConfig = {
presets: [
[
"@babel/preset-env",
{
targets: {
node: "current",
},
},
],
"@babel/preset-flow",
],
plugins: babelPlugins,
};
const babelTsConfig = {
presets: [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
targets: {
electron: "7.1.9",
},
},
],
"@babel/preset-react",
"@babel/preset-flow",
],
plugins: [
...babelPlugins,
"react-hot-loader/babel",
[
"babel-plugin-styled-components",
{
ssr: false,
},
],
],
};
module.exports = {
target: "electron-main",
optimization: {
minimize: false,
},
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, ".webpack"),
filename: "main.bundle.js",
},
plugins: [
new HardSourceWebpackPlugin({
cacheDirectory: path.resolve(__dirname, ".webpack", "cacheMain"),
}),
new UnusedWebpackPlugin({
directories: [path.join(__dirname, "src/main"), path.join(__dirname, "src/internal")],
exclude: ["*.test.js", "*.html", "updater/*"],
}),
new CopyPlugin({
patterns: [{ from: path.join(__dirname, "build/icons"), to: "build/icons" }],
}),
],
module: {
rules: [
{
test: /\.js$/i,
loader: "babel-loader",
exclude: /node_modules/,
options: babelConfig,
},
{
test: /\.(png|jpe?g|gif)$/i,
loader: "file-loader",
options: {
name: "[path][name].[ext]",
},
},
],
},
resolve: {
alias: {
"~": path.resolve(__dirname, "src"),
},
},
};