Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-02-07 12:25:59 +01:00
parent 1db0e94b20
commit 862a361a3d
16 changed files with 14625 additions and 3 deletions

14
tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}