mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-29 15:24:10 +08:00
* feat: add cli for toon * docs: use npx in the readme * feat: overhaul and refactor --------- Co-authored-by: Johann Schopplich <mail@johannschopplich.com>
13 lines
286 B
TypeScript
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
|