From e087b3e29bf6bee04b34405a82a11b19f9038242 Mon Sep 17 00:00:00 2001 From: mihaisc Date: Mon, 7 Feb 2022 18:03:14 +0200 Subject: [PATCH] stop removing jsdocs (#1254) --- tsconfig.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 179292b1..ee8cc83d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,16 +4,22 @@ "moduleResolution": "node", "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "lib": ["ESNext", "dom"], + "lib": [ + "ESNext", + "dom" + ], "declaration": true, "module": "ESNext", "target": "ESNext", - "removeComments": true, + "removeComments": false, "experimentalDecorators": true, "preserveConstEnums": true, "outDir": "./dist/", "sourceMap": true, "declarationDir": "./dist/" }, - "include": ["src/**/*", "test/**/*"] -} + "include": [ + "src/**/*", + "test/**/*" + ] +} \ No newline at end of file