elearning/Backend/tsoa.json

35 lines
1 KiB
JSON
Raw Normal View History

2026-01-09 06:28:15 +00:00
{
"entryFile": "src/app.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": [
"src/controllers/**/*Controller.ts"
],
"spec": {
"outputDirectory": "public",
"specVersion": 3,
"name": "E-Learning Platform API",
"description": "API documentation for E-Learning Platform",
"version": "1.0.0",
"contact": {
"name": "E-Learning Team"
},
"securityDefinitions": {
"jwt": {
"type": "apiKey",
"name": "Authorization",
"in": "header",
"description": "JWT Authorization header using the Bearer scheme. Example: \"Authorization: Bearer {token}\""
}
}
},
"routes": {
"routesDir": "src/routes",
"middleware": "express",
2026-01-22 15:56:56 +07:00
"authenticationModule": "./src/middleware/authentication.ts",
"multerOpts": {
"limits": {
"fileSize": 1073741824
}
}
2026-01-09 06:28:15 +00:00
}
}