mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-04-28 19:08:22 -04:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
target: "electron-main",
|
|
entry: "./main.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "./build"),
|
|
filename: "main.js",
|
|
},
|
|
resolve: {
|
|
extensions: [".ts", ".js", ".tsx"],
|
|
},
|
|
node: {
|
|
__dirname: false,
|
|
},
|
|
};
|