-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathwebpack.common.js
More file actions
48 lines (45 loc) · 958 Bytes
/
webpack.common.js
File metadata and controls
48 lines (45 loc) · 958 Bytes
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
const path = require("path");
function target(entry, output, overrides) {
const opts = {
mode: "none",
entry: entry,
output: {
path: path.resolve(__dirname, "out"),
filename: output
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
configFile: "build/tsconfig.json"
}
},
{
test: /\.css$/,
use: [{ loader: "style-loader" }, { loader: "css-loader" }]
}
]
},
resolve: {
extensions: [".tsx", ".tx", ".js"]
}
};
return Object.assign(opts, overrides);
}
module.exports = [
target("./src/renderer.tsx", "renderer.js", {
externals: {
sharp: "commonjs sharp",
sqlite3: "commonjs sqlite3"
},
target: "electron-renderer"
}),
target("./src/main.tsx", "main.js", {
node: {
__dirname: false
},
target: "electron-main"
})
];