-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
47 lines (45 loc) · 1.31 KB
/
webpack.config.ts
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
import type webpack from "webpack";
import CopyWebpackPlugin from "copy-webpack-plugin";
import path from "path";
export const webpackConfig: webpack.Configuration = {
mode: "production",
entry: "./src/index.ts",
target: "node",
output: {
path: path.join(__dirname, "_build"),
filename: "index.js"
},
module: {
rules: [
{
test: /\.ts$/,
use: [{
loader: "ts-loader",
options: {
configFile: "tsconfig.build.json",
transpileOnly: true
}
}],
exclude: /node_modules/
}
]
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: "node_modules/node-notifier/vendor/snoreToast/snoretoast-x64.exe",
to: "../dist/snoretoast-x64.exe",
toType: "file"
},
{
from: "resources/bin/create-windowless-app-template-launcher.exe",
to: "../dist/create-windowless-app-template-launcher.exe",
toType: "file"
}
]
})
],
devtool: "source-map"
};
export default webpackConfig;