From 48183d2b05e2f71f16289d994a11c5fa0e6b4e69 Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 30 Jan 2025 06:15:35 +0100 Subject: [PATCH] Enable two more strict options in tsconfig (#33438) These have no violations so are safe to enable - https://www.typescriptlang.org/tsconfig/#strictBindCallApply - https://www.typescriptlang.org/tsconfig/#strictBuiltinIteratorReturn --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 78b74a3d3c9..ebcb77cd7d6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,6 +22,8 @@ "verbatimModuleSyntax": true, "stripInternal": true, "strict": false, + "strictBindCallApply": true, + "strictBuiltinIteratorReturn": true, "strictFunctionTypes": true, "noImplicitAny": true, "noImplicitThis": true,