File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1+ Using "request": "launch" item in launch.json for debugging sends pathMappings
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ interface ICommonDebugArguments {
3636 // Show return values of functions while stepping. 
3737 showReturnValue ?: boolean ; 
3838 subProcess ?: boolean ; 
39- } 
40- export  interface  IKnownAttachDebugArguments  extends  ICommonDebugArguments  { 
41-  workspaceFolder ?: string ; 
4239 // An absolute path to local directory with source. 
4340 localRoot ?: string ; 
4441 remoteRoot ?: string ; 
4542 pathMappings ?: {  localRoot : string ;  remoteRoot : string  } [ ] ; 
43+ } 
44+ export  interface  IKnownAttachDebugArguments  extends  ICommonDebugArguments  { 
45+  workspaceFolder ?: string ; 
4646 customDebugger ?: boolean ; 
4747} 
4848
@@ -62,9 +62,6 @@ export interface IKnownLaunchRequestArguments extends ICommonDebugArguments {
6262 env ?: Record < string ,  string  |  undefined > ; 
6363 envFile : string ; 
6464 console ?: ConsoleType ; 
65-  localRoot ?: string ; 
66-  remoteRoot ?: string ; 
67-  pathMappings ?: {  localRoot : string ;  remoteRoot : string  } [ ] ; 
6865} 
6966// tslint:disable-next-line:interface-name 
7067export  interface  LaunchRequestArguments  extends  DebugProtocol . LaunchRequestArguments ,  IKnownLaunchRequestArguments ,  DebugConfiguration  { 
                         You can’t perform that action at this time. 
           
                  
0 commit comments