From a90aeb3d8fd05fc6303ce9ef4e957c2e19cbe9c4 Mon Sep 17 00:00:00 2001 From: Richie Foreman Date: Wed, 13 Aug 2025 16:17:38 -0400 Subject: chore(build/compiler): Enable a bunch of strict TS compiler options. (#6138) --- tsconfig.json | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index e761d3e1..5f303ddc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,16 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, + "noImplicitAny": true, + "noImplicitOverride": true, + "noImplicitReturns": true, + "noImplicitThis": true, "forceConsistentCasingInFileNames": true, + "noUnusedLocals": true, + "strictBindCallApply": true, + "strictFunctionTypes": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, "resolveJsonModule": true, "sourceMap": true, "composite": true, -- cgit v1.2.3