fix: ensure dts option is set to false for cli entry in tsdown.config.ts

This commit is contained in:
2025-11-15 22:37:42 +07:00
parent bb427ae332
commit 2230910f4d
2 changed files with 2 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@robonen/questlang",
"type": "module",
"version": "0.0.1",
"version": "0.0.2",
"description": "TypeScript interpreter for QuestLang programming language",
"license": "MIT",
"keywords": [

View File

@@ -9,5 +9,6 @@ export default defineConfig([
entry: 'src/cli.ts',
noExternal: ['@clack/prompts'],
minify: true,
dts: false,
},
]);