12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
export const swaggerOptions = {
|
|
definition: {
|
|
openapi: "3.0.0",
|
|
info: {
|
|
title: "Logistics Support Tool",
|
|
version: "1.0.0",
|
|
},
|
|
},
|
|
// globs where swagger-jsdoc should look for annotations:
|
|
apis: ["../../src/**/*.ts"],
|
|
};
|