Skip to content

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

@ayush-0513

Description

@ayush-0513

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions