UNPKG

@orchestrator-ui/orchestrator-ui-components

Version:

Library of UI Components used to display the workflow orchestrator frontend

15 lines (13 loc) 320 B
import { defineConfig } from 'tsup'; export default defineConfig((opts) => ({ entry: ['src/index.ts'], sourcemap: true, splitting: false, clean: !opts.watch, dts: !opts.watch, outDir: 'dist', format: ['esm'], platform: 'node', target: 'es2022', skipNodeModulesBundle: true, }));