Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10564,6 +10564,13 @@ export interface UserPreferences {
* Default: `500`
*/
readonly maximumHoverLength?: number;
/**
* If enabled, file rename operations will update string literals in test framework
* mocking functions such as jest.mock(), vitest.mock(), etc.
*
* Default: false
*/
readonly updateImportsInTestFrameworkCalls?: boolean;
}

export type OrganizeImportsTypeOrder = "last" | "inline" | "first";
Expand Down
Loading