initial commit

This commit is contained in:
moro
2025-10-17 00:14:13 +07:00
commit 7bc1dfcc3b
41 changed files with 12890 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "6.0"
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}