-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsoa.json
43 lines (43 loc) · 1.07 KB
/
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
{
"entryFile": "./src/index.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": ["./src/controllers/**/*Controller.ts"],
"spec": {
"host": "pet-store-kong-3abae03b4c44.herokuapp.com",
"basePath": "/v1/",
"outputDirectory": "./spec",
"specVersion": 3,
"specFileBaseName": "petStore",
"description": "This is the API for the Pet Store.",
"name": "PetStore",
"license": "Apache 2.0",
"contact": {
"name": "Dan Tolbert: [email protected]",
"url": "https://developer.cisco.com"
},
"securityDefinitions": {
"api_key": {
"type": "apiKey",
"name": "api_key",
"in": "query",
"description": "Access Key, default is abc123456"
}
},
"schemes": ["http"],
"tags": [
{
"name": "Read",
"description": "Read operations"
},
{
"name": "Write",
"description": "Write operations"
}
]
},
"routes": {
"basePath": "/v1",
"routesDir": "./src/routes",
"authenticationModule": "./src/auth.ts"
}
}