refactor services to use typescript

This commit is contained in:
KS Jannette
2026-05-09 16:41:50 -04:00
parent c865e8f497
commit 1a1161b509
21 changed files with 970 additions and 531 deletions

18
server/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"allowJs": true, // Allow JavaScript files to be imported and compiled
"checkJs": true,
"target": "es2022",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src", // Root of input files
"strict": true,
"skipLibCheck": true // Skip checking .d.ts files for faster builds
},
"include": [
"src/**/*"
], // Files to include in the project
"exclude": [
"node_modules"
] // Folders to ignore
}