Skip to content

Commit 29d7c73

Browse files
committed
fix lint
1 parent 6941bf6 commit 29d7c73

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
@@ -2802,7 +2802,7 @@ namespace ts.server.protocol {
28022802
readonly includeCompletionsWithInsertText?: boolean;
28032803
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
28042804
readonly allowTextChangesInNewFiles?: boolean;
2805-
readonly includeExtensionInImports?: boolean
2805+
readonly includeExtensionInImports?: boolean;
28062806
}
28072807

28082808
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)