feat: init

This commit is contained in:
2025-10-24 04:43:47 +07:00
commit 8b83c15ab1
13 changed files with 4079 additions and 0 deletions

13
tsdown.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'tsdown';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
platform: 'node',
clean: true,
sourcemap: true,
dts: false,
minify: false,
treeshake: true,
noExternal: ['better-sqlite3', 'grammy', '@grammyjs/conversations'],
});