mirror of
https://github.com/diced/zipline.git
synced 2025-12-05 20:40:12 -08:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { defineConfig, Options } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
platform: 'node',
|
|
format: 'cjs',
|
|
treeshake: true,
|
|
clean: false,
|
|
sourcemap: true,
|
|
entryPoints: {
|
|
server: 'src/server/index.ts',
|
|
},
|
|
outDir: 'build',
|
|
});
|