Files
smsgw-tester/tsup.config.ts
PhatPhuckDave 4a5aa484ba Update
2024-07-22 19:52:53 +02:00

14 lines
246 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/main.ts'],
dts: false,
splitting: false,
sourcemap: false,
outDir: 'build',
clean: true,
minify: true,
target: ['esnext'],
format: ['cjs']
});