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