mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
Co-authored-by: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com> Co-authored-by: Wesley Luyten <me@wesleyluyten.com>
11 lines
243 B
TypeScript
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,
|
|
});
|