2022-07-09 10:37:19 +02:00
|
|
|
const path = require("path");
|
2022-11-01 08:07:25 +01:00
|
|
|
const CopyPlugin = require("copy-webpack-plugin");
|
2022-07-09 10:37:19 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: "development",
|
|
|
|
entry: {
|
2023-10-05 20:25:32 +02:00
|
|
|
emain: ["./src/electron/emain.ts"],
|
2022-07-09 10:37:19 +02:00
|
|
|
},
|
|
|
|
target: "electron-main",
|
|
|
|
output: {
|
2022-11-02 05:18:40 +01:00
|
|
|
path: path.resolve(__dirname, "dist-dev"),
|
2023-08-22 06:37:04 +02:00
|
|
|
filename: "[name].js",
|
2022-07-09 10:37:19 +02:00
|
|
|
},
|
|
|
|
externals: {
|
2023-08-22 06:37:04 +02:00
|
|
|
fs: "require('fs')",
|
2022-07-09 10:37:19 +02:00
|
|
|
"fs-ext": "require('fs-ext')",
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.tsx?$/,
|
|
|
|
// exclude: /node_modules/,
|
|
|
|
use: {
|
|
|
|
loader: "babel-loader",
|
|
|
|
options: {
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
2023-08-22 06:37:04 +02:00
|
|
|
targets:
|
|
|
|
"defaults and not ie > 0 and not op_mini all and not op_mob > 0 and not kaios > 0 and not and_qq > 0 and not and_uc > 0 and not baidu > 0",
|
2022-07-09 10:37:19 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
"@babel/preset-react",
|
2023-08-22 06:37:04 +02:00
|
|
|
"@babel/preset-typescript",
|
|
|
|
],
|
2022-07-09 10:37:19 +02:00
|
|
|
plugins: [
|
2023-08-22 06:37:04 +02:00
|
|
|
["@babel/transform-runtime", { regenerator: true }],
|
2022-07-09 10:37:19 +02:00
|
|
|
"@babel/plugin-transform-react-jsx",
|
2023-08-22 06:37:04 +02:00
|
|
|
["@babel/plugin-proposal-decorators", { legacy: true }],
|
|
|
|
["@babel/plugin-proposal-class-properties", { loose: true }],
|
|
|
|
["@babel/plugin-proposal-private-methods", { loose: true }],
|
|
|
|
["@babel/plugin-proposal-private-property-in-object", { loose: true }],
|
2022-07-09 10:37:19 +02:00
|
|
|
"babel-plugin-jsx-control-statements",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-08-22 06:37:04 +02:00
|
|
|
],
|
2022-07-09 10:37:19 +02:00
|
|
|
},
|
2022-11-01 08:07:25 +01:00
|
|
|
plugins: [
|
|
|
|
new CopyPlugin({
|
2023-10-05 20:25:32 +02:00
|
|
|
patterns: [{ from: "src/electron/preload.js", to: "preload.js" }],
|
2022-11-01 08:07:25 +01:00
|
|
|
}),
|
|
|
|
],
|
2022-07-09 10:37:19 +02:00
|
|
|
resolve: {
|
2023-08-22 06:37:04 +02:00
|
|
|
extensions: [".ts", ".tsx", ".js"],
|
2022-07-09 10:37:19 +02:00
|
|
|
},
|
2023-08-22 06:37:04 +02:00
|
|
|
};
|