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 @@ -2802,7 +2802,7 @@ namespace ts.server.protocol {
2802
2802
readonly includeCompletionsWithInsertText ?: boolean ;
2803
2803
readonly importModuleSpecifierPreference ?: "relative" | "non-relative" ;
2804
2804
readonly allowTextChangesInNewFiles ?: boolean ;
2805
- readonly includeExtensionInImports ?: boolean
2805
+ readonly includeExtensionInImports ?: boolean ;
2806
2806
}
2807
2807
2808
2808
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