You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -596,6 +596,24 @@
596
596
"Hides the temporary PowerShell Extension Terminal when the debugging session ends and restores the previous window before the debug session had started. This does nothing if the previous window was closed during the debug session.",
597
597
"Keeps the temporary PowerShell Extension Terminal open after the debugging session ends."
598
598
]
599
+
},
600
+
"pathMappings": {
601
+
"type": "array",
602
+
"description": "Optional: An array of path mappings to use when debugging a remote PowerShell host process. Each mapping is an object with 'localRoot' and 'remoteRoot' properties. This is only used if the current integrated terminal is connected to a remote PowerShell runspace.",
603
+
"items": {
604
+
"type": "object",
605
+
"properties": {
606
+
"localRoot": {
607
+
"type": "string",
608
+
"description": "The local root to map."
609
+
},
610
+
"remoteRoot": {
611
+
"type": "string",
612
+
"description": "The remote root to map."
613
+
}
614
+
}
615
+
},
616
+
"default": []
599
617
}
600
618
}
601
619
},
@@ -645,6 +663,24 @@
645
663
"Hides the temporary PowerShell Extension Terminal when the debugging session ends and restores the previous window before the debug session had started. This does nothing if the previous window was closed during the debug session.",
646
664
"Keeps the temporary PowerShell Extension Terminal open after the debugging session ends."
647
665
]
666
+
},
667
+
"pathMappings": {
668
+
"type": "array",
669
+
"description": "Optional: An array of path mappings to use when debugging a remote PowerShell host process. Each mapping is an object with 'localRoot' and 'remoteRoot' properties.",
0 commit comments