Initialize project with GitMCP router implementation and TypeScript configuration

This commit is contained in:
u60196
2025-10-10 15:09:20 +02:00
commit c9abaed91f
4 changed files with 515 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
"outDir": "dist",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["node"]
},
"include": ["src"]
}