From 4236ddd5fad34fdd1d215038ee34187d263b40eb Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 22 Jan 2025 09:07:07 +0100 Subject: [PATCH] Reduce confusion from import elison Set verbatimModuleSyntax to reduce possible confusion around which imports stay and which gets removed by TypeScript's import elision. --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 2e679cd..8d3206a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ "moduleResolution": "node16", "strict": true, "esModuleInterop": true, + "verbatimModuleSyntax": true, "skipLibCheck": true } }