ff-admin-server/tsconfig.json
Julian Krauser e1ec65350d login and authentication
login via totp
authentication via access and refresh tokens
2024-08-22 11:40:31 +02:00

19 lines
409 B
JSON

{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"esModuleInterop": true,
"target": "esnext",
"noImplicitAny": true,
"skipLibCheck": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
}