feat(cli): scaffold CLI package with commander

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ty
2026-03-22 14:40:58 +08:00
parent 10f6fd0065
commit 36cc0abd9f
5 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"skipLibCheck": true
},
"include": ["src"]
}