microsoft / microsoft/TypeScript
Refactoring: Generate type annotation from inferred type
Nobody has claimed this yet.
- Dominant language
- Go
- Stars
- 111k
- Forks
- 14.3k
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 132
Description
Search Terms
refactoring
quick
fix
add
inferred
type
Suggestion
VS Code should provide a refactoring command for generating a type annotation.
Use Cases
In our code base, we use the TSLint's typedef rule to enforce type annotations. For example:
// TSLINT ERROR
const map = this.getMap();
const value = map.getValue(someKey);
// GOOD
const map: Map<string, CatalogItem> = this.getMap();
const value: CatalogItem = map.getValue(someKey);
It's true that these types can usually be inferred by the compiler. However, requiring people to write explicit annotations makes code more readable, especially in situations where IntelliSense is unavailable. For example: When reviewing a GitHub pull request, or printing a Git history, we get no help from IntelliSense.
Details
VS Code should provide a refactoring command for generating a type annotation. For example, if I right-click on map in this code...
const map = this.getMap();
...then I should be able to do Refactor -> Add Type, and it will convert it to the good form shown above.
Although this is a super easy operation for the compiler engine, I cannot seem to find an implementation of this feature.
I found a couple projects typescript-plugin-add-type and typescript-plugin-proactive-code-fixes. However, they aren't usable:
- They aren't maintained any more
- The latest release is incompatible with the latest VS Code
- They are modeled as compiler plugins
Representing refactoring operations as compiler plugins doesn't seem like the best design:
- The refactoring engine will malfunction unless the
npm installis in a good state, which is not always the case for a project that is "under construction" - The plugin will have to be added separately to each project. It would be much more convenient to install it once (e.g. a VS Code extension), and then be able to use it anywhere.
Since the implementation is relatively simple, this seems like a good candidate for a built-in feature.
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start from the requested TypeScript refactoring behavior and the examples in the issue, then trace where TypeScript exposes refactoring commands. Define how inferred annotations should be generated for the shown declarations and verify that the command produces equivalent annotated code without changing runtime behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- compilers, developer-experience
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 30/100