refactor: Move backend to typescript

This commit is contained in:
2026-06-06 23:36:54 +05:30
parent 012db524cb
commit a1e01cfdc3
6 changed files with 817 additions and 42 deletions

14
server/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"]
}