From ea846b06d5f958600b077252b006523fde1d3e60 Mon Sep 17 00:00:00 2001 From: Zwifi Date: Fri, 6 Oct 2023 15:22:25 +0200 Subject: [PATCH] Preserve JSDoc comments in emitted files (#3174) This makes JSDoc comments available to developers using our libraries at development time for IDEs supporting it. Not emitting these unnecessarily deviate from defaults. --- tsconfig.build.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 7e096d7951..5ed0b54f90 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -11,10 +11,6 @@ "strict": true, "declaration": true, "noImplicitAny": true, - "removeComments": true, - "noLib": false, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, "esModuleInterop": true, "target": "es2018", "sourceMap": true,