From c8042e8cc77296c19de03c3aa580d693cc91a4d2 Mon Sep 17 00:00:00 2001 From: Johan Nyman Date: Mon, 10 Jun 2024 08:06:44 +0200 Subject: [PATCH] chore: fix wierd issue Where @types/ws errored with some wierd @types/node version issue. This only happens in some local installations, and not on CI. --- tsconfig.build.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.build.json b/tsconfig.build.json index 44cbef64..a28576e4 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -18,6 +18,7 @@ "node", "jest" ], + "skipLibCheck": true, "strict": true, "alwaysStrict": false, "forceConsistentCasingInFileNames": true,