-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsoa.json
43 lines (43 loc) · 1003 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"swagger": {
"outputDirectory": "./",
"entryFile": "./src/index.ts",
"host": "localhost:8080",
"basePath": "/",
"tags": [
{
"name": "Bots",
"description": "Botim on you, Israel."
}
],
"name": "Botim - extension backend",
"description": "",
"securityDefinitions": {
"REPORTER": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
},
"ADMIN": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
},
"SUPER_ADMIN": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
}
},
"schemes": ["http"],
"yaml": true
},
"routes": {
"basePath": "/",
"entryFile": "./src/index.ts",
"routesDir": "./src/routers",
"middlewareTemplate": "./src/routers/express-routes-template.ts.tsoa",
"authenticationModule": "./src/security/authentication.ts"
},
"ignore": ["**/node_modules/**"]
}