started backend conversion to typescript

This commit is contained in:
2025-10-17 12:01:38 -04:00
parent f7a0884fb3
commit cbe2cef565
20 changed files with 221 additions and 33 deletions

14
api/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"target": "es5",
"types": [
"node",
"express"
]
},
"include": [
"./src/**/*"
]
}