Files
toon/tsdown.config.ts
Andreas Partsch 80acc9d4fe feat: add cli (#34)
* feat: add cli for toon

* docs: use npx in the readme

* feat: overhaul and refactor

---------

Co-authored-by: Johann Schopplich <mail@johannschopplich.com>
2025-10-30 08:08:08 +01:00

13 lines
286 B
TypeScript

import type { UserConfig, UserConfigFn } from 'tsdown/config'
import { defineConfig } from 'tsdown/config'
const config: UserConfig | UserConfigFn = defineConfig({
entry: {
'index': 'src/index.ts',
'cli/index': 'cli/src/index.ts',
},
dts: true,
})
export default config