rage-framework/client/tsup.config.ts

13 lines
248 B
TypeScript
Raw Permalink Normal View History

2024-06-10 19:19:36 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
outDir: './dist',
format: ['cjs'],
noExternal: ['rage-rpc'],
2024-06-10 19:59:29 +00:00
dts: true,
2024-06-10 19:19:36 +00:00
splitting: false,
sourcemap: false,
clean: true,
})