File tree 3 files changed +4
-0
lines changed
tests/baselines/reference/api 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -490,6 +490,7 @@ namespace ts.server {
490
490
globalPlugins ?: ReadonlyArray < string > ;
491
491
pluginProbeLocations ?: ReadonlyArray < string > ;
492
492
allowLocalPluginLoads ?: boolean ;
493
+ typesMapLocation ?: string ;
493
494
}
494
495
495
496
export class Session implements EventSender {
@@ -550,6 +551,7 @@ namespace ts.server {
550
551
globalPlugins : opts . globalPlugins ,
551
552
pluginProbeLocations : opts . pluginProbeLocations ,
552
553
allowLocalPluginLoads : opts . allowLocalPluginLoads ,
554
+ typesMapLocation : opts . typesMapLocation ,
553
555
syntaxOnly : opts . syntaxOnly ,
554
556
} ;
555
557
this . projectService = new ProjectService ( settings ) ;
Original file line number Diff line number Diff line change @@ -520,6 +520,7 @@ namespace ts.server {
520
520
globalPlugins,
521
521
pluginProbeLocations,
522
522
allowLocalPluginLoads,
523
+ typesMapLocation,
523
524
} ) ;
524
525
525
526
this . eventPort = eventPort ;
Original file line number Diff line number Diff line change @@ -8679,6 +8679,7 @@ declare namespace ts.server {
8679
8679
globalPlugins ?: ReadonlyArray < string > ;
8680
8680
pluginProbeLocations ?: ReadonlyArray < string > ;
8681
8681
allowLocalPluginLoads ?: boolean ;
8682
+ typesMapLocation ?: string ;
8682
8683
}
8683
8684
class Session implements EventSender {
8684
8685
private readonly gcTimer ;
You can’t perform that action at this time.
0 commit comments