Files
OG T 0d4d694201
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
feat: add @vibework/agent-sdk foundation
2026-06-08 13:43:54 +08:00

12 lines
207 B
TypeScript

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