From ad9acd91e9aab506021658f7e889d737ca0e81ab Mon Sep 17 00:00:00 2001 From: Marc Fornos Date: Mon, 27 May 2024 14:13:29 +0200 Subject: [PATCH] disable no implicit any for #21 --- tsconfig.docs.json | 3 ++- tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig.docs.json b/tsconfig.docs.json index f2bcda3..aecebbd 100644 --- a/tsconfig.docs.json +++ b/tsconfig.docs.json @@ -6,7 +6,8 @@ "moduleResolution": "NodeNext", "esModuleInterop": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "noImplicitAny": false }, "include": [ "packages/**/src/**/*" diff --git a/tsconfig.json b/tsconfig.json index 99017fa..e23cc9a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,8 @@ "moduleResolution": "NodeNext", "esModuleInterop": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "noImplicitAny": false }, "include": [ "packages/**/src/**/*"