Files
v10/packages/spf/tsdown.config.ts
T
27a3993fb2 feat(spf): initial push of SPF (#784)
Co-authored-by: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
Co-authored-by: Wesley Luyten <me@wesleyluyten.com>
2026-03-09 17:32:24 -07:00

11 lines
243 B
TypeScript

import { defineConfig } from 'tsdown';
export default defineConfig({
entry: ['src/index.ts', 'src/dom/index.ts', 'src/dom/playback-engine/index.ts'],
platform: 'browser',
format: 'es',
sourcemap: true,
clean: true,
dts: true,
});