Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support a user preference for preferring the type keyword in auto-imports #55675

Closed
5 tasks done
ethanresnick opened this issue Sep 8, 2023 · 1 comment Β· Fixed by #56090
Closed
5 tasks done

Support a user preference for preferring the type keyword in auto-imports #55675

ethanresnick opened this issue Sep 8, 2023 · 1 comment Β· Fixed by #56090
Assignees
Labels
Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". Fix Available A PR has been opened for this issue In Discussion Not yet reached consensus Suggestion An idea for TypeScript

Comments

@ethanresnick
Copy link
Contributor

πŸ” Search Terms

import type auto-import

βœ… Viability Checklist

⭐ Suggestion

When an import is generated automatically (by the language server?), I'd like to be able to have it generate a type import if the imported symbol is used in the file only as a type. Probably, this preference would have options for whether the type import should be of the import type or the import { type ... } form.

πŸ“ƒ Motivating Example

See below

πŸ’» Use Cases

Some codebases prefer to use type-only imports whenever possible to indicate to readers that an import isn't actually used as a value. Meanwhile, other codebases prefer the brevity of import without type.

Currently, a number of TS compiler settings influence the auto-imports that the language server generates, but some of those settings are hard to turn on in existing codebases (e.g., verbatimModuleSyntax, because of how it effects interop) and others are deprecated. Moreover, none of them are actually designed to apply a stylistic preference across the board β€”Β they only lead to type imports being generated when it's absolutely necessary for interop, so they won't generate type-only imports as often as a user of this preference would want.

@andrewbranch made the case for adding preference in #54664

The flags that affect type-only auto imports... affect things in precisely the way that the compiler requires, minus bugs. None of them are specifically designed to control auto-imports. It sounds like an antipattern to use compiler options that are supposed to control real things in order to arrive at an editor behavior that matches a particular stylistic preference, so I would much rather give you a user preference.

Really, this issue is just a duplicate of #54664, because the original author closed that issue for unrelated reasons.

@ethanresnick
Copy link
Contributor Author

I would also encourage the two deprecated options to not be removed before such a preference is added, as those options are really the only way to approximate the desired behavior

@andrewbranch andrewbranch self-assigned this Sep 11, 2023
@andrewbranch andrewbranch added Suggestion An idea for TypeScript In Discussion Not yet reached consensus labels Sep 11, 2023
@andrewbranch andrewbranch added this to the TypeScript 5.3.0 milestone Sep 11, 2023
@andrewbranch andrewbranch added Help Wanted You can do this Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". labels Sep 13, 2023
@andrewbranch andrewbranch removed the Help Wanted You can do this label Oct 11, 2023
@typescript-bot typescript-bot added Fix Available A PR has been opened for this issue labels Oct 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Effort: Moderate Requires experience with the TypeScript codebase, but feasible. Harder than "Effort: Casual". Fix Available A PR has been opened for this issue In Discussion Not yet reached consensus Suggestion An idea for TypeScript
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants