Skip to content

Commit 5abf67c

Browse files
committed
Update API baseline
1 parent 8d85576 commit 5abf67c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3818,7 +3818,7 @@ declare namespace ts {
38183818
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
38193819
readonly allowTextChangesInNewFiles?: boolean;
38203820
readonly providePrefixAndSuffixTextForRename?: boolean;
3821-
readonly includePackageJsonAutoImports?: "exclude-dev" | "all" | "none";
3821+
readonly includePackageJsonAutoImports?: "auto" | "on" | "off";
38223822
readonly provideRefactorNotApplicableReason?: boolean;
38233823
}
38243824
/** Represents a bigint literal value without requiring bigint support */
@@ -8897,7 +8897,7 @@ declare namespace ts.server.protocol {
88978897
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
88988898
readonly providePrefixAndSuffixTextForRename?: boolean;
88998899
readonly allowRenameOfImportPath?: boolean;
8900-
readonly includePackageJsonAutoImports?: "exclude-dev" | "all" | "none";
8900+
readonly includePackageJsonAutoImports?: "auto" | "on" | "off";
89018901
}
89028902
interface CompilerOptions {
89038903
allowJs?: boolean;

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3818,7 +3818,7 @@ declare namespace ts {
38183818
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
38193819
readonly allowTextChangesInNewFiles?: boolean;
38203820
readonly providePrefixAndSuffixTextForRename?: boolean;
3821-
readonly includePackageJsonAutoImports?: "exclude-dev" | "all" | "none";
3821+
readonly includePackageJsonAutoImports?: "auto" | "on" | "off";
38223822
readonly provideRefactorNotApplicableReason?: boolean;
38233823
}
38243824
/** Represents a bigint literal value without requiring bigint support */

0 commit comments

Comments
 (0)