rage-framework/server/tsup.config.ts

13 lines
248 B
TypeScript
Raw Normal View History

2024-06-10 19:39:59 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
2025-01-28 14:35:38 +00:00
entry: ['src/**/*.ts'],
2024-06-10 19:39:59 +00:00
outDir: './dist',
format: ['cjs'],
experimentalDts: true,
2024-06-10 19:39:59 +00:00
splitting: false,
2025-01-28 14:35:38 +00:00
bundle: false,
2024-06-10 19:39:59 +00:00
sourcemap: false,
clean: true,
})