toon-format--toon
10 行
231 B
TypeScript
10 行
231 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
|