forked from bcgov/jag-shuber-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsoa.json
29 lines (29 loc) · 789 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
{
"swagger": {
"outputDirectory": "./dist",
"entryFile": "./src/index.ts",
"host": "localhost:3000",
"basePath": "/v1",
"yaml": false,
"securityDefinitions": {
"siteminder": {
"type": "apiKey",
"name":"smgov_userguid",
"in":"header"
},
"jwt": {
"type": "apiKey",
"in":"cookie",
"name": "app_token"
}
}
},
"routes": {
"basePath": "/v1",
"entryFile": "./src/index.ts",
"routesDir": "./src",
"middleware": "koa",
"middlewareTemplate": "./templates/routeTemplate.handlebars",
"authenticationModule": "./src/authentication.ts"
}
}