From 7aef254b99418b3d14aa518417b67bd1baac3001 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sun, 5 Feb 2023 17:01:01 -0800 Subject: [PATCH] fix type test --- packages/custom/types/tsconfig.json | 1 + packages/jimp/types/tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/custom/types/tsconfig.json b/packages/custom/types/tsconfig.json index dcfe450fd..a2773dcea 100644 --- a/packages/custom/types/tsconfig.json +++ b/packages/custom/types/tsconfig.json @@ -6,6 +6,7 @@ "noImplicitThis": true, "strictNullChecks": true, "strictFunctionTypes": true, + "skipLibCheck": true, "noEmit": true, // If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index". diff --git a/packages/jimp/types/tsconfig.json b/packages/jimp/types/tsconfig.json index 6dbbf36d9..eb1dd15b0 100644 --- a/packages/jimp/types/tsconfig.json +++ b/packages/jimp/types/tsconfig.json @@ -6,6 +6,7 @@ "noImplicitThis": true, "strictNullChecks": true, "strictFunctionTypes": true, + "skipLibCheck": true, "noEmit": true, // If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".