rage-framework/browser/tsup.config.ts

13 lines
248 B
TypeScript
Raw Normal View History

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