-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsoa.json
More file actions
26 lines (26 loc) · 774 Bytes
/
tsoa.json
File metadata and controls
26 lines (26 loc) · 774 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
{
"entryFile": "src/index.ts",
"controllerPathGlobs": ["src/controllers/*Controller.ts"],
"noImplicitAdditionalProperties": "throw-on-extras",
"spec": {
"outputDirectory": "src/__generated__",
"specVersion": 3,
"name": "Hypercerts API",
"contact": {
"url": "https://hypercerts.org"
},
"description": "API for uploading allow lists and hypercert metadata. Visit /graphql for the GraphQL API.",
"version": "1.0.0"
},
"routes": {
"routesDir": "src/__generated__/routes",
"esm": true,
"middleware": {
"v2/upload": [{ "name": "upload.array", "args": ["files", 5] }]
},
"iocModule": "src/lib/tsoa/iocContainer.ts",
"useNamedParameters": true,
"useMethodParameters": true,
"ioc": "tsyringe"
}
}