File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 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 @@ -510,6 +510,7 @@ namespace ts.server {
510
510
globalPlugins,
511
511
pluginProbeLocations,
512
512
allowLocalPluginLoads,
513
+ typesMapLocation,
513
514
} ) ;
514
515
515
516
this . eventPort = eventPort ;
Original file line number Diff line number Diff line change @@ -8667,6 +8667,7 @@ declare namespace ts.server {
8667
8667
globalPlugins ?: ReadonlyArray < string > ;
8668
8668
pluginProbeLocations ?: ReadonlyArray < string > ;
8669
8669
allowLocalPluginLoads ?: boolean ;
8670
+ typesMapLocation ?: string ;
8670
8671
}
8671
8672
class Session implements EventSender {
8672
8673
private readonly gcTimer ;
You can’t perform that action at this time.
0 commit comments