Add express scaffolding for backend services

This commit is contained in:
Alexa Amundson
2025-11-21 00:12:25 -06:00
parent b42da04208
commit 17ed67829b
16 changed files with 7392 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2019",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src"]
}