Single File Type Checking Support #940
BojanRatkovic
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
The limitation here is with typescript, as we build on top of that. Does typescript have a similar feature? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem Statement
Currently, Glint only supports project-wide type checking, which means checking individual files or a subset of files is not possible. This limitation creates friction in several common development workflows:
Use Cases & Benefits
Developer Productivity
Git Workflow Integration
Editor Experience
Proposed Solution
Add support for specifying individual files or multiple files:
Implementation Approach
Technical Implementation Details
The solution involves:
tsconfig.json
but only includes specified filesBenefits for the Ecosystem
lint-staged Integration
CI/CD Optimizations
Development Workflow
Current Implementation Status
I have already implemented this feature locally and have it working with:
tsconfig.json
inheritanceThe implementation is minimal, non-breaking, and follows existing Glint patterns.
Would love to hear thoughts from the maintainers and community!
Beta Was this translation helpful? Give feedback.
All reactions