Add OAuth backend scaffold

This commit is contained in:
MrDiderot
2026-07-22 22:54:03 +02:00
parent 77d93c4f8d
commit 39a0e35fd2
14 changed files with 2971 additions and 37 deletions

13
backend/tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"outDir": "dist"
},
"include": ["src/**/*.ts"]
}