Merge pull request #226202 from andrewbranch/autoImportSpecifierExcludeRegexes

[typescript-language-features] Add autoImportSpecifierExcludeRegexes preference
This commit is contained in:
Matt Bierner
2024-08-23 13:23:49 -07:00
committed by GitHub
3 changed files with 19 additions and 0 deletions

View File

@@ -1030,6 +1030,22 @@
"markdownDescription": "%typescript.preferences.autoImportFileExcludePatterns%",
"scope": "resource"
},
"typescript.preferences.autoImportSpecifierExcludeRegexes": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "%typescript.preferences.autoImportSpecifierExcludeRegexes%",
"scope": "resource"
},
"javascript.preferences.autoImportSpecifierExcludeRegexes": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "%typescript.preferences.autoImportSpecifierExcludeRegexes%",
"scope": "resource"
},
"typescript.preferences.preferTypeOnlyAutoImports": {
"type": "boolean",
"default": false,