checkpoint

This commit is contained in:
fred 2025-08-14 13:05:57 -07:00
parent 24281a6322
commit 5dc89497c6
16 changed files with 1427 additions and 15 deletions

16
backend/tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist"
},
"include": [
"src",
"scripts"
]
}