chore: add cli package (#1320)

This commit is contained in:
Yury Semikhatsky
2026-01-21 23:54:03 -08:00
committed by GitHub
parent b213c187b0
commit 85c64bbe0f
7 changed files with 1063 additions and 0 deletions

17
cli/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ESNext",
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"module": "ESNext",
"rootDir": "src",
"outDir": "./lib",
"resolveJsonModule": true,
"types": ["node"],
"noEmit": true
},
"include": [
"src",
]
}