mirror of
https://github.com/diced/zipline.git
synced 2025-05-10 18:05:54 +02:00
17 lines
296 B
TypeScript
Executable file
17 lines
296 B
TypeScript
Executable file
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig([
|
|
{
|
|
platform: 'node',
|
|
format: 'cjs',
|
|
treeshake: true,
|
|
clean: false,
|
|
sourcemap: true,
|
|
entryPoints: {
|
|
ctl: 'src/ctl/index.ts',
|
|
},
|
|
outDir: 'build',
|
|
bundle: true,
|
|
minify: true,
|
|
},
|
|
]);
|