Support a user preference for preferring the type keyword in auto-imports #55675
Closed
5 tasks done
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
Milestone
π 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 theimport type
or theimport { 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
withouttype
.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 totype
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
Really, this issue is just a duplicate of #54664, because the original author closed that issue for unrelated reasons.
The text was updated successfully, but these errors were encountered: