next-downloader-bot/apps/bot/tsup.config.js
2025-08-15 13:06:04 +03:00

16 lines
307 B
JavaScript

import { defineConfig } from 'tsup';
export default defineConfig({
bundle: true,
clean: true,
entry: ['./src/index.ts'],
external: ['grammy', 'zod'],
format: 'cjs',
loader: { '.json': 'copy' },
minify: true,
outDir: './dist',
sourcemap: false,
splitting: false,
target: 'es2022',
});