From b73ef9153f2c3f167d8a877138c54588cc1d6850 Mon Sep 17 00:00:00 2001 From: Tom French Date: Wed, 24 Aug 2022 21:09:16 +0100 Subject: [PATCH] fix: stop typechecking javascript files We've got a bunch of type errors that need to be fixed but we want to do that progressively --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e6524ca..ff28c58 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "jsx": "preserve", // Check JS files too "allowJs": true, - "checkJs": true, + "checkJs": false, // Used for temp builds "outDir": "build", "moduleResolution": "Node",