ft_transcendence/src/tsconfig.base.json
Maieul BOYER 964fe908a6 feat(auth): Base auth with plugins
- Add fastify to protect routes plugins (requireAuth: true)
- Simple Demo to show regular password auth (no 2FA/OTP nor remote auth)
- Currently supports: login, logout, signin
- OTP workflow should work, not tested
- Fixed convention for docker volumes (now all placed in /volumes/<name>)
2025-09-01 15:47:07 +02:00

28 lines
602 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2023",
"module": "esnext",
"moduleResolution": "node",
"newLine": "lf",
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noUnusedLocals": true,
"removeComments": true,
"resolveJsonModule": true,
"strict": true,
"outDir": "dist",
"rootDir": ".",
"baseUrl": ".",
"skipLibCheck": true,
"lib": ["ESNext"],
"paths": {
"@shared/*": ["@shared/src/*"]
}
}
}