From 40c7f4f7f41c1fa8142fbdd530c55c9d6e083012 Mon Sep 17 00:00:00 2001 From: Mark Michaelis Date: Wed, 10 Aug 2022 07:43:00 +0200 Subject: [PATCH] test(playwright): Workaround Jest-Playwright Issue Work around: * playwright-community/jest-playwright#808 by adding `"skipLibCheck": true` to shared tsconfig.json. See also: * TypeScript: TSConfig Reference - skipLibCheck https://www.typescriptlang.org/tsconfig#skipLibCheck --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 5b431fedf3..2ab213ad46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,7 @@ "target": "ES6", "composite": true, "incremental": true, + "skipLibCheck": true, "types": [ "jest" ]