Files
esengine/packages/network-ext/network-server/tsup.config.ts

12 lines
251 B
TypeScript
Raw Normal View History

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