mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
await Bun.build({
|
|
entrypoints: ["./src/index.ts"],
|
|
outdir: "./dist",
|
|
target: "bun",
|
|
env: "disable",
|
|
// sourcemap: "linked",
|
|
minify: {
|
|
whitespace: true,
|
|
identifiers: true,
|
|
syntax: true,
|
|
},
|
|
external: ["ssh2"],
|
|
});
|