File tree Expand file tree Collapse file tree
tests/baselines/reference/api Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -490,6 +490,7 @@ namespace ts.server {
490490 globalPlugins ?: ReadonlyArray < string > ;
491491 pluginProbeLocations ?: ReadonlyArray < string > ;
492492 allowLocalPluginLoads ?: boolean ;
493+ typesMapLocation ?: string ;
493494 }
494495
495496 export class Session implements EventSender {
@@ -550,6 +551,7 @@ namespace ts.server {
550551 globalPlugins : opts . globalPlugins ,
551552 pluginProbeLocations : opts . pluginProbeLocations ,
552553 allowLocalPluginLoads : opts . allowLocalPluginLoads ,
554+ typesMapLocation : opts . typesMapLocation ,
553555 syntaxOnly : opts . syntaxOnly ,
554556 } ;
555557 this . projectService = new ProjectService ( settings ) ;
Original file line number Diff line number Diff line change @@ -510,6 +510,7 @@ namespace ts.server {
510510 globalPlugins,
511511 pluginProbeLocations,
512512 allowLocalPluginLoads,
513+ typesMapLocation,
513514 } ) ;
514515
515516 this . eventPort = eventPort ;
Original file line number Diff line number Diff line change @@ -8667,6 +8667,7 @@ declare namespace ts.server {
86678667 globalPlugins ?: ReadonlyArray < string > ;
86688668 pluginProbeLocations ?: ReadonlyArray < string > ;
86698669 allowLocalPluginLoads ?: boolean ;
8670+ typesMapLocation ?: string ;
86708671 }
86718672 class Session implements EventSender {
86728673 private readonly gcTimer ;
You can’t perform that action at this time.
0 commit comments