first commit

This commit is contained in:
douboer
2025-10-29 21:28:43 +08:00
commit fe4a3e7cbf
63 changed files with 607 additions and 0 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es2019",
"module": "commonjs",
"moduleResolution": "node",
"types": ["node"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true
},
"include": ["src"]
}