next-downloader-bot/tsup.config.js
vchikalkin a941b7ed36 init
2025-08-13 18:16:51 +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',
});