mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
14 lines
337 B
JavaScript
14 lines
337 B
JavaScript
|
|
const esbuild = require("esbuild");
|
||
|
|
const path = require("path");
|
||
|
|
|
||
|
|
module.exports = esbuild.build({
|
||
|
|
entryPoints: [path.join(__dirname, "src", "main.js")],
|
||
|
|
bundle: true,
|
||
|
|
outfile: path.join(__dirname, "main.js"),
|
||
|
|
format: "cjs",
|
||
|
|
platform: "browser",
|
||
|
|
target: ["chrome90"],
|
||
|
|
external: ["obsidian", "fs"],
|
||
|
|
logLevel: "info",
|
||
|
|
});
|