This commit is contained in:
PhatPhuckDave
2024-07-22 19:52:53 +02:00
parent a18ac0355c
commit 4a5aa484ba
57 changed files with 4213 additions and 3046 deletions

13
tsup.config.ts Normal file
View File

@@ -0,0 +1,13 @@
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']
});