test(cli): add basic test suite

This commit is contained in:
Johann Schopplich
2025-11-04 07:45:50 +01:00
parent 8f0156c1af
commit af298537a4
6 changed files with 262 additions and 6 deletions

View File

@@ -2,7 +2,9 @@ import type { UserConfig, UserConfigFn } from 'tsdown/config'
import { defineConfig } from 'tsdown/config'
const config: UserConfig | UserConfigFn = defineConfig({
entry: 'src/index.ts',
entry: {
index: 'src/cli-entry.ts',
},
dts: true,
})