From 9a121c55a22806ea549858a6eed4ef62223f9b25 Mon Sep 17 00:00:00 2001 From: PlaryWasTaken <70018287+PlaryWasTaken@users.noreply.github.com> Date: Thu, 25 Jan 2024 16:38:58 -0300 Subject: [PATCH] Changes removeComments to false, since JSDocs uses comments --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8ba5bc6..93ed4ed 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "incremental": false, "moduleResolution": "node", "inlineSources": false, - "removeComments": true, + "removeComments": false, "sourceMap": false, "target": "ES2018", "skipLibCheck": true, @@ -16,7 +16,8 @@ "noUnusedLocals": true, "importHelpers": true, "strict": true, - "resolveJsonModule": true + "resolveJsonModule": true, + }, "include": ["src/**/*", "test/**/*", "bench/**/*"], "exclude": ["node_modules"]