mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
12 lines
194 B
TypeScript
12 lines
194 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig([
|
|
{
|
|
entry: 'src/index.ts',
|
|
dts: true,
|
|
},
|
|
{
|
|
entry: 'src/cli.ts',
|
|
noExternal: ['@clack/prompts'],
|
|
},
|
|
]); |