From 79fb8c53bc58a4c7e36c4bc0141ce36c5dc354a2 Mon Sep 17 00:00:00 2001 From: Luke Bunselmeyer Date: Wed, 8 Oct 2025 23:03:27 -0400 Subject: [PATCH] Disabled comment removal in TypeScript compilation (`removeComments: false`) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 11cb454..e810b10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,7 @@ "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "isolatedModules": true, - "removeComments": true, + "removeComments": false, "moduleDetection": "force", "verbatimModuleSyntax": true, "noUncheckedIndexedAccess": true,