forked from credebl/agent-controller
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsoa.json
More file actions
28 lines (28 loc) · 702 Bytes
/
tsoa.json
File metadata and controls
28 lines (28 loc) · 702 Bytes
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
{
"entryFile": "src/index.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": ["src/**/*Controller.ts"],
"spec": {
"outputDirectory": "src/routes",
"specVersion": 3,
"tsconfig": "tsconfig.build.json",
"securityDefinitions": {
"apiKey": {
"type": "apiKey",
"name": "Authorization",
"in": "header"
},
"jwt": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"routes": {
"routesDir": "./src/routes",
"tsconfig": "tsconfig.build.json",
"iocModule": "./src/utils/tsyringeTsoaIocContainer",
"authenticationModule": "src/authentication"
}
}