First commit

This commit is contained in:
2026-03-31 21:51:07 +02:00
commit 59d9434af9
20 changed files with 2312 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist"
},
"include": ["src"]
}