first commit

This commit is contained in:
Peter Wood
2025-04-05 10:44:18 -04:00
commit 7c1cf427d1
10 changed files with 1031 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
// tsconfig.json
{
"compilerOptions": {
"target": "ES2017", // Or newer
"module": "CommonJS",
"outDir": "./dist",
"rootDir": "api/src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"sourceMap": true, // Helpful for debugging
"resolveJsonModule": true // Allows importing JSON files
},
"include": ["api/src/**/*"], // Only compile files in src
"exclude": ["node_modules", "**/*.spec.ts"] // Exclude tests if you have them
}