From 0c0c0c3be2c3989d4931670595bdb6d3a8e4b3be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Hillerstr=C3=B6m?= Date: Mon, 2 Sep 2024 14:52:18 +0300 Subject: [PATCH] tsconfig: Allow implicit any --- tsconfig.json | 2 +- tsconfig.test.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d5486a8..32cb192 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,7 +22,7 @@ "isolatedModules": true, "noEmit": true, "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, + "noImplicitAny": false, "noImplicitReturns": true, "noImplicitThis": true, "noUnusedLocals": true, diff --git a/tsconfig.test.json b/tsconfig.test.json index 268b9ba..dd23727 100644 --- a/tsconfig.test.json +++ b/tsconfig.test.json @@ -3,7 +3,6 @@ "compilerOptions": { "inlineSourceMap": true, "module": "commonjs", - "noImplicitAny": false, "removeComments": true, "sourceMap": false, "target": "es6",