From 77559f8f78528fb276f4e2f6dd8969be3386ab36 Mon Sep 17 00:00:00 2001 From: Evan Hahn Date: Sat, 28 Sep 2024 22:04:15 +0000 Subject: [PATCH] Enable `noUncheckedSideEffectImports` TypeScript option --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 7ef3ad8..b3f2c75 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,7 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noUncheckedIndexedAccess": true, + "noUncheckedSideEffectImports": true, "strict": true, "target": "es6", "outDir": "."