From 10ba87668c211b991844dcd36294fb1ab8592bd6 Mon Sep 17 00:00:00 2001 From: skarab42 Date: Wed, 21 Sep 2022 17:11:42 +0200 Subject: [PATCH] fix: revert `skipLibCheck` to true See https://github.com/microsoft/TypeScript/issues/30511 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d5aadcf..3bf1822 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -46,7 +46,7 @@ "noPropertyAccessFromIndexSignature": true, /** Completeness */ - "skipLibCheck": false, + "skipLibCheck": true, // https://github.com/microsoft/TypeScript/issues/30511 "skipDefaultLibCheck": true } }