naga-audit-service
Version:
A comprehensive audit service library for NestJS applications with MongoDB support
18 lines • 649 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.options = exports.documentOptions = exports.swaggerConfig = void 0;
const swagger_1 = require("@nestjs/swagger");
const package_json_1 = require("../../../package.json");
exports.swaggerConfig = new swagger_1.DocumentBuilder()
.setTitle(package_json_1.name)
.setDescription(`Naga Base Service APIs documentation`)
.setVersion('1.0')
.addTag(package_json_1.name)
.build();
exports.documentOptions = {
deepScanRoutes: true,
};
exports.options = {
customSiteTitle: 'Application Name API Docs',
};
//# sourceMappingURL=swagger.module.js.map