TypeScript icon indicating copy to clipboard operation
TypeScript copied to clipboard

[FEATURE]: Enable stricter TypeScript compiler options (e.g., "strict": true, noImplicitAny) and fix small type errors. Example tsconfig.json

Open ayush-0513 opened this issue 3 months ago • 0 comments

Motivation

Enabling strict TypeScript options ("strict": true, "noImplicitAny": true) ensures stronger type safety, catches errors at compile time, and improves overall code reliability. This makes the codebase more maintainable, reduces hidden bugs, and aligns with best practices for TypeScript projects.

Examples

{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "strict": true, "noImplicitAny": true, "skipLibCheck": true, "moduleResolution": "bundler" } }

Possible workarounds

No response

ayush-0513 avatar Sep 25 '25 18:09 ayush-0513