From 90476b88fe87281a193bf6cb6d9bce471ced676d Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Thu, 12 Aug 2021 17:19:37 -0500 Subject: [PATCH] style(types): re-enable skipLibCheck in tsconfig It's not possible to untangle node and react-native types unfortunately, they clash. It is a known issue and apparently intractable, and new typescript projects have skipLibCheck on so we acquiesce Related #4306 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 91a3288baf..8d08e4097b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,7 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "moduleResolution": "node", - "skipLibCheck": false, + "skipLibCheck": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "esModuleInterop": true,