From 0d563173ff179fdc2434d78b1d734651ad3521ab Mon Sep 17 00:00:00 2001 From: Niraj Nillawar <149431848+NirajDN@users.noreply.github.com> Date: Thu, 24 Jul 2025 11:45:09 +0530 Subject: [PATCH 1/2] Update tsconfig.json --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 30546d01de4e..397ddc7a312e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,8 +5,11 @@ "allowJs": true, "skipLibCheck": true, "strict": true, + "noImplicitThis": true, + "strictNullChecks": true, + "noUnusedLocals": true, + "noUnusedParameters": true, "forceConsistentCasingInFileNames": true, - "noImplicitThis": false, "esModuleInterop": true, "module": "esnext", "moduleResolution": "Bundler", From 6b21b97631292b4667e0ccc4623d4927d0463a38 Mon Sep 17 00:00:00 2001 From: Niraj Nillawar <149431848+NirajDN@users.noreply.github.com> Date: Thu, 24 Jul 2025 11:47:58 +0530 Subject: [PATCH 2/2] Update tsconfig.json(2) --- tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 397ddc7a312e..f7b20f6a6087 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,11 @@ "strict": true, "noImplicitThis": true, "strictNullChecks": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + + + "noUnusedLocals": false, + "noUnusedParameters": false, + "forceConsistentCasingInFileNames": true, "esModuleInterop": true, "module": "esnext",