rage-framework/rpc/tsup.config.ts

13 lines
260 B
TypeScript
Raw Normal View History

2024-08-15 19:47:22 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
outDir: './dist',
format: ['cjs'],
noExternal: ['rage-rpc'],
experimentalDts: true,
splitting: false,
sourcemap: false,
clean: true,
})