Files
esengine/packages/framework/pathfinding/tsup.config.ts

11 lines
211 B
TypeScript
Raw Normal View History

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