-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsoa.json
30 lines (30 loc) · 835 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
{
"entryFile": "src/index.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": [
"src/api/**/*Controller.ts"
],
"spec": {
"outputDirectory": "docs",
"specVersion": 3,
"yaml": true,
"securityDefinitions": {
"bearerAuth": {
"type": "http",
"description": "Bearer authentication - give access to the bearer of this token",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"routes": {
"routesDir": "src/api",
"routesFileName": "tsoa-routes.generated.ts",
"iocModule": "src/api/tsoa-ioc",
"authenticationModule": "src/api/tsoa-auth"
},
"ignore": [
"**/node_modules/**",
"**/domain/**"
]
}