From a144a55eb403b57911d035039192919fcdcee280 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Mon, 25 Jan 2021 22:20:54 +0100 Subject: [PATCH] Swagger: Enable comment parsing Signed-off-by: David Mehren --- nest-cli.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nest-cli.json b/nest-cli.json index 2e1000f0d..567468983 100644 --- a/nest-cli.json +++ b/nest-cli.json @@ -2,6 +2,13 @@ "collection": "@nestjs/schematics", "sourceRoot": "src", "compilerOptions": { - "plugins": ["@nestjs/swagger/plugin"] + "plugins": [ + { + "name": "@nestjs/swagger", + "options": { + "introspectComments": true + } + } + ] } }