File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
namespace ts . moduleSpecifiers {
4
4
export interface ModuleSpecifierPreferences {
5
5
readonly importModuleSpecifierPreference ?: "relative" | "non-relative" ;
6
- readonly includeExtensionInImports ?: boolean
6
+ readonly includeExtensionInImports ?: boolean ;
7
7
}
8
8
9
9
// Note: importingSourceFile is just for usesJsExtensionOnImports
Original file line number Diff line number Diff line change @@ -2774,7 +2774,7 @@ namespace ts.server.protocol {
2774
2774
readonly includeCompletionsWithInsertText ?: boolean ;
2775
2775
readonly importModuleSpecifierPreference ?: "relative" | "non-relative" ;
2776
2776
readonly allowTextChangesInNewFiles ?: boolean ;
2777
- readonly includeExtensionInImports ?: boolean
2777
+ readonly includeExtensionInImports ?: boolean ;
2778
2778
}
2779
2779
2780
2780
export interface CompilerOptions {
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ namespace ts {
240
240
readonly includeCompletionsWithInsertText ?: boolean ;
241
241
readonly importModuleSpecifierPreference ?: "relative" | "non-relative" ;
242
242
readonly allowTextChangesInNewFiles ?: boolean ;
243
- readonly includeExtensionInImports ?: boolean
243
+ readonly includeExtensionInImports ?: boolean ;
244
244
}
245
245
/* @internal */
246
246
export const emptyOptions = { } ;
You can’t perform that action at this time.
0 commit comments