mirror of
https://github.com/voson-wang/toon.git
synced 2026-01-30 07:44:10 +08:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import type { UserConfig, UserConfigFn } from 'tsdown/config'
|
|
import { defineConfig } from 'tsdown/config'
|
|
|
|
const config: UserConfig | UserConfigFn = defineConfig({
|
|
entry: {
|
|
index: 'src/cli-entry.ts',
|
|
},
|
|
dts: true,
|
|
})
|
|
|
|
export default config
|