cli for setting up better-t-stack

This commit is contained in:
fgrreloaded
2025-02-10 22:37:40 +05:30
commit a73630b6ee
7 changed files with 4115 additions and 0 deletions

12
tsup.config.ts Normal file
View File

@@ -0,0 +1,12 @@
// tsup.config.ts
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
clean: true,
dts: true,
shims: true,
splitting: false,
outDir: 'dist'
});