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 @@ -520,6 +520,7 @@ namespace ts.server {
520520 globalPlugins,
521521 pluginProbeLocations,
522522 allowLocalPluginLoads,
523+ typesMapLocation,
523524 } ) ;
524525
525526 this . eventPort = eventPort ;
Original file line number Diff line number Diff line change @@ -8679,6 +8679,7 @@ declare namespace ts.server {
86798679 globalPlugins ?: ReadonlyArray < string > ;
86808680 pluginProbeLocations ?: ReadonlyArray < string > ;
86818681 allowLocalPluginLoads ?: boolean ;
8682+ typesMapLocation ?: string ;
86828683 }
86838684 class Session implements EventSender {
86848685 private readonly gcTimer ;
You can’t perform that action at this time.
0 commit comments