-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsoa.json
51 lines (51 loc) · 1.46 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
44
45
46
47
48
49
50
51
{
"entryFile": "src/app.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": ["src/routes/*.ts"],
"spec": {
"spec": {
"servers": []
},
"name": "TSOA Demo Pet Store - OpenAPI 3.0",
"description": "Pet Store Server OpenAPI 3.0 specification.\n\nSome useful links:\n- [The TSOA Demo Pet Store repository](https://github.com/CloudNStoyan/tsoa-project-demo)\n- [The source API definition for the Pet Store](https://github.com/CloudNStoyan/tsoa-project-demo/blob/main/src/generated/swagger.yaml)",
"outputDirectory": "src/generated/",
"specVersion": 3,
"securityDefinitions": {
"api_key": {
"description": "The TSOA Demo Pet Store API Key is:\n\n`simple-pet-token`",
"type": "http",
"scheme": "bearer"
}
},
"tags": [
{
"name": "Pet",
"description": "Everything about your Pets",
"externalDocs": {
"description": "Find out more",
"url": "http://swagger.io"
}
},
{
"name": "Store",
"description": "Access to Petstore orders",
"externalDocs": {
"description": "Find out more about our store",
"url": "http://swagger.io"
}
}
]
},
"routes": {
"routesDir": "src/generated/",
"authenticationModule": "src/auth.ts",
"esm": true
},
"compilerOptions": {
"baseUrl": "./",
"paths": {
"~*": ["src/*"],
"src/*": ["src/*"]
}
}
}