Initial project scaffolding

This commit is contained in:
Axel Meyer
2026-04-07 10:09:51 +00:00
commit 5a19864fb5
9 changed files with 4016 additions and 0 deletions

14
tsconfig.server.json Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist-server",
"rootDir": ".",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": false,
"noImplicitAny": false
},
"include": ["server/**/*.ts", "core/**/*.ts"]
}