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