initialize server project with basic structure and dependencies

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-02 14:30:20 +02:00
commit 7e2ba65c54
7 changed files with 851 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"]
}