From 2f583b5af57f44ac31fd60b0caf8e4d30c7442d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20Poduszl=C3=B3?= <14854048+kripod@users.noreply.github.com> Date: Sat, 13 Apr 2024 23:06:22 +0200 Subject: [PATCH] chore(tsconfig): enable `noImplicitReturns` --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index eb975fa..84729e5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "skipLibCheck": true, "isolatedModules": true, "strict": true, + "noImplicitReturns": true, "noUncheckedIndexedAccess": true, "target": "ES2022", "lib": ["ES2022"],