replace brocli with commander, fix type errors, add ascii art

This commit is contained in:
Aman Varshney
2025-02-11 11:09:13 +05:30
parent a7890bffaa
commit 23f9b0adb7
9 changed files with 160 additions and 82 deletions

View File

@@ -1,12 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist"
},
"include": ["src"]
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist",
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}