-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsoa.json
29 lines (29 loc) · 785 Bytes
/
tsoa.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"entryFile": "src/main.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": [
"src/**/*.controller.ts"
],
"spec": {
"name": "Transactions Backend APIs",
"description": "Backend APIs for a transactions processing system",
"outputDirectory": "src/generated",
"specVersion": 3,
"basePath": "/api/v1",
"schemes": [
"http",
"https"
],
"securityDefinitions": {
"jwt": {
"type": "apiKey",
"in": "header",
"name": "Authorization"
}
}
},
"routes": {
"authenticationModule": "src/middleware/auth.middleware",
"routesDir": "src/generated"
}
}