From f907be52619099637f17c2ecb289e24bc5a2ba0e Mon Sep 17 00:00:00 2001 From: Justin Hall Date: Sun, 3 Nov 2019 09:11:14 -0700 Subject: [PATCH] revert: build(ts): enable skipLibCheck hack to avoid issues with Cypress types (#78) This reverts commit 815c45d33a43ba3ac93a293154bf82fbea748598. --- tsconfig.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e34e9dfe..c673fc2e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,9 +8,7 @@ "noEmit": true, "strict": true, "types": ["cypress", "@testing-library/cypress", "cypress-axe"], - "typeRoots": ["node_modules/@types", "./src/@types"], - // TODO: remove once Cypress types are sorted out - "skipLibCheck": true + "typeRoots": ["node_modules/@types", "./src/@types"] }, "exclude": [".cache", "public"] }