converted to ts

This commit is contained in:
2026-02-15 11:45:50 +05:30
parent 6375434aaa
commit 4bbba45642
11 changed files with 882 additions and 232 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
},
"include": [
"*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}