-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsoa.json
More file actions
30 lines (30 loc) · 748 Bytes
/
tsoa.json
File metadata and controls
30 lines (30 loc) · 748 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
29
30
{
"entryFile": "src/index.ts",
"noImplicitAdditionalProperties": "throw-on-extras",
"controllerPathGlobs": [
"src/**/*.controller.ts"
],
"spec": {
"specVersion": 3,
"outputDirectory": "src",
"entryFile": "src/index.ts",
"name": "API",
"description": "The API",
"host": "localhost:3000",
"schemes": [
"http",
"https"
],
"securityDefinitions": {
"apiKey": {
"type": "apiKey",
"name": "dummy",
"in": "header"
}
}
},
"routes": {
"routesDir": "src/routes",
"authenticationModule": "src/middlewares/authentication.ts"
}
}