- 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>)
28 lines
602 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|