Skip to content

Commit b449ff0

Browse files
committed
fix lint
1 parent 7a4c595 commit b449ff0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/compiler/moduleSpecifiers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace ts.moduleSpecifiers {
44
export interface ModuleSpecifierPreferences {
55
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
6-
readonly includeExtensionInImports?: boolean
6+
readonly includeExtensionInImports?: boolean;
77
}
88

99
// Note: importingSourceFile is just for usesJsExtensionOnImports

src/server/protocol.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2774,7 +2774,7 @@ namespace ts.server.protocol {
27742774
readonly includeCompletionsWithInsertText?: boolean;
27752775
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
27762776
readonly allowTextChangesInNewFiles?: boolean;
2777-
readonly includeExtensionInImports?: boolean
2777+
readonly includeExtensionInImports?: boolean;
27782778
}
27792779

27802780
export interface CompilerOptions {

src/services/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ namespace ts {
240240
readonly includeCompletionsWithInsertText?: boolean;
241241
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
242242
readonly allowTextChangesInNewFiles?: boolean;
243-
readonly includeExtensionInImports?: boolean
243+
readonly includeExtensionInImports?: boolean;
244244
}
245245
/* @internal */
246246
export const emptyOptions = {};

0 commit comments

Comments
 (0)