feat: complete MVP foundation auth and dashboard

This commit is contained in:
2026-06-04 09:05:40 +02:00
parent 20615e12a1
commit df7a955736
32 changed files with 880 additions and 139 deletions

15
tsconfig.test.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": false,
"incremental": false,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"noEmit": false,
"outDir": ".test-output",
"rootDir": ".",
"types": ["node"],
"verbatimModuleSyntax": false
},
"include": ["lib/**/*.ts", "tests/**/*.test.ts"]
}