rage-framework/cef/tsup.config.ts

13 lines
260 B
TypeScript
Raw Permalink Normal View History

2024-06-11 18:34:35 +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,
})