Add "auto" to importModuleSpecifierPreference (#34981)

* Add "auto" to importModuleSpecifierPreference

* Update APIs
This commit is contained in:
Andrew Branch
2019-11-07 14:55:13 -08:00
committed by GitHub
parent db43be130d
commit 4cbace7110
5 changed files with 6 additions and 6 deletions

View File

@@ -3013,7 +3013,7 @@ namespace ts.server.protocol {
* values, with insertion text to replace preceding `.` tokens with `?.`.
*/
readonly includeAutomaticOptionalChainCompletions?: boolean;
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
readonly allowTextChangesInNewFiles?: boolean;
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
readonly providePrefixAndSuffixTextForRename?: boolean;