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