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
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -596,6 +596,28 @@
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
+
"required": [
616
+
"localRoot",
617
+
"remoteRoot"
618
+
]
619
+
},
620
+
"default": []
599
621
}
600
622
}
601
623
},
@@ -645,6 +667,28 @@
645
667
"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
668
"Keeps the temporary PowerShell Extension Terminal open after the debugging session ends."
647
669
]
670
+
},
671
+
"pathMappings": {
672
+
"type": "array",
673
+
"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