From 7c0f18f1ecb5f3173e120fbe724f7f8060156084 Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 30 Jan 2025 01:48:02 +0100 Subject: [PATCH] Enable two more strict options in tsconfig --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 78b74a3d3c989..ebcb77cd7d645 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,