Files
esengine/packages/procgen/tsup.config.ts

13 lines
254 B
TypeScript
Raw Normal View History

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
dts: true,
splitting: false,
sourcemap: true,
clean: true,
treeshake: true,
tsconfig: 'tsconfig.build.json'
});