UNPKG

@openanime/ass2esl

Version:

Utilities to convert Advanced SubStation Alpha (ASS) to Expressive Subtitle Language (ESL)

15 lines (13 loc) 292 B
import { defineConfig } from 'tsup'; export default defineConfig({ target: 'esnext', keepNames: true, entryPoints: ['./src/**/*.ts'], clean: true, format: 'esm', splitting: true, minify: false, config: 'tsconfig.json', sourcemap: true, dts: true, });