Fixed API-Backend

This commit is contained in:
2025-05-07 15:10:12 +02:00
parent 6c0d6d650b
commit c3b05a671f
8 changed files with 96 additions and 14 deletions

15
api-backend/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
"module": "ESNext",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"]
}