-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.renderer.config.js
53 lines (52 loc) · 1.17 KB
/
webpack.renderer.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
const path = require("path");
const webpack = require("webpack");
module.exports = {
// Put your normal webpack config below here
entry: "./src/render.js",
output: {
path: path.resolve(__dirname, "./dist"),
filename: "render.prod.js",
},
target: "electron11-renderer", // load electron externals
module: {
rules: [
{
test: /\.jsx?$/,
use: {
loader: "babel-loader",
options: {
exclude: /node_modules/,
},
},
},
// Put your webpack loader rules in this array. This is where you would put
// your ts-loader configuration for instance:
/**
* Typescript Example:
*
* {
* test: /\.tsx?$/,
* exclude: /(node_modules|.webpack)/,
* loaders: [{
* loader: 'ts-loader',
* options: {
* transpileOnly: true
* }
* }]
* }
*/
],
},
plugins: [
new webpack.ProvidePlugin({
h: ["preact", "h"],
}),
],
resolve: {
alias: {
react: "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
},
},
};