Refactor code structure for improved readability and maintainability

This commit is contained in:
Boris D
2025-09-09 13:28:39 +03:00
parent 5572bf48b7
commit afb1f343e0
23 changed files with 4239 additions and 0 deletions

11
tsconfig.build.json Normal file
View File

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"module": "commonjs",
"types": ["node"],
"allowJs": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test"]
}