This commit is contained in:
2025-04-24 14:12:08 +08:00
parent 313f9eb93c
commit 14bf9aa187
19 changed files with 459 additions and 393 deletions

9
bun.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
// https://bun.sh/docs/bundler
await Bun.build({
target: 'node',
format: 'esm',
entrypoints: ['./src/main.ts'],
outdir: './dist',
env: 'ASSISTANT_*',
});