You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(ts): enable strict type checking and tighten tsconfig rules
Updated tsconfig.json to enforce stricter type safety and modern module
resolution. These changes align the project with TypeScript best practices
and prevent common runtime errors.
Key configuration changes:
- Enabled `strict` mode for comprehensive type checking.
- Added `noUncheckedIndexedAccess` to handle potentially undefined
array/object lookups.
- Added `noImplicitOverride` to ensure subclass methods are explicitly
marked.
- Set `moduleDetection` to 'force' to treat all files as modules.
- Explicitly defined `include` and `exclude` patterns.
Signed-off-by: Jeremy Ho <jujaga@gmail.com>
0 commit comments