From 1b1adb9c2a52d6acd5f03a316ea9f9fd26a22301 Mon Sep 17 00:00:00 2001 From: Aparna Michael Date: Wed, 8 Jan 2025 18:40:16 +0530 Subject: [PATCH] ignoring type checking for third-party libraries --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c9e437eb..a6b9ea39 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,7 +8,8 @@ ], "sourceMap": true, "rootDir": "src", - "strict": true /* enable all strict type-checking options */ + "strict": true, /* enable all strict type-checking options */ + "skipLibCheck": true /* ignoring type checking for third-party libraries */ /* Additional Checks */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */