File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -537,7 +537,8 @@ namespace ts.server {
537
537
canUseEvents,
538
538
globalPlugins : options . globalPlugins ,
539
539
pluginProbeLocations : options . pluginProbeLocations ,
540
- allowLocalPluginLoads : options . allowLocalPluginLoads
540
+ allowLocalPluginLoads : options . allowLocalPluginLoads ,
541
+ typesMapLocation,
541
542
} ) ;
542
543
543
544
this . eventPort = eventPort ;
Original file line number Diff line number Diff line change @@ -300,6 +300,7 @@ namespace ts.server {
300
300
globalPlugins ?: ReadonlyArray < string > ;
301
301
pluginProbeLocations ?: ReadonlyArray < string > ;
302
302
allowLocalPluginLoads ?: boolean ;
303
+ typesMapLocation ?: string ;
303
304
}
304
305
305
306
export class Session implements EventSender {
@@ -354,7 +355,8 @@ namespace ts.server {
354
355
eventHandler : this . eventHandler ,
355
356
globalPlugins : opts . globalPlugins ,
356
357
pluginProbeLocations : opts . pluginProbeLocations ,
357
- allowLocalPluginLoads : opts . allowLocalPluginLoads
358
+ allowLocalPluginLoads : opts . allowLocalPluginLoads ,
359
+ typesMapLocation : opts . typesMapLocation ,
358
360
} ;
359
361
this . projectService = new ProjectService ( settings ) ;
360
362
this . gcTimer = new GcTimer ( this . host , /*delay*/ 7000 , this . logger ) ;
Original file line number Diff line number Diff line change @@ -7259,6 +7259,7 @@ declare namespace ts.server {
7259
7259
globalPlugins ?: ReadonlyArray < string > ;
7260
7260
pluginProbeLocations ?: ReadonlyArray < string > ;
7261
7261
allowLocalPluginLoads ?: boolean ;
7262
+ typesMapLocation ?: string ;
7262
7263
}
7263
7264
class Session implements EventSender {
7264
7265
private readonly gcTimer ;
You can’t perform that action at this time.
0 commit comments