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
* Adding OptionsSchema generation
This is to prevent repetitive fields from being copy and pasted
improperly.
* Move tslint to be after compile
* Address PR issues
console.log('Please make sure to not check in package.json that has been rewritten by the extension activation. If you intended to have changes in package.json, please only check-in your changes. If you did not, please run `git checkout -- package.json`.');
Copy file name to clipboardExpand all lines: Extension/package.json
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -533,6 +533,7 @@
533
533
},
534
534
"configurationAttributes": {
535
535
"launch": {
536
+
"type": "object",
536
537
"required": [
537
538
"program"
538
539
],
@@ -719,8 +720,8 @@
719
720
}
720
721
},
721
722
"logging": {
722
-
"type": "object",
723
723
"description": "Optional flags to determine what types of messages should be logged to the Debug Console.",
724
+
"type": "object",
724
725
"default": {},
725
726
"properties": {
726
727
"exceptions": {
@@ -759,10 +760,10 @@
759
760
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the MI-enabled debugger backend executable (such as gdb).",
760
761
"type": "object",
761
762
"default": {
762
-
"pipeCwd": "${workspaceRoot}",
763
+
"pipeCwd": "/usr/bin",
763
764
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
764
765
"pipeArgs": [],
765
-
"debuggerPath": "enter the path for the debugger on the target machine, for example /usr/bin/gdb"
766
+
"debuggerPath": "The full path to the debugger on the target machine, for example /usr/bin/gdb."
766
767
},
767
768
"properties": {
768
769
"pipeCwd": {
@@ -801,6 +802,7 @@
801
802
}
802
803
},
803
804
"attach": {
805
+
"type": "object",
804
806
"required": [
805
807
"program",
806
808
"processId"
@@ -883,8 +885,8 @@
883
885
}
884
886
},
885
887
"logging": {
886
-
"type": "object",
887
888
"description": "Optional flags to determine what types of messages should be logged to the Debug Console.",
889
+
"type": "object",
888
890
"default": {},
889
891
"properties": {
890
892
"exceptions": {
@@ -923,10 +925,10 @@
923
925
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the MI-enabled debugger backend executable (such as gdb).",
924
926
"type": "object",
925
927
"default": {
926
-
"pipeCwd": "${workspaceRoot}",
928
+
"pipeCwd": "/usr/bin",
927
929
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
928
930
"pipeArgs": [],
929
-
"debuggerPath": "enter the path for the debugger on the target machine, for example /usr/bin/gdb"
931
+
"debuggerPath": "The full path to the debugger on the target machine, for example /usr/bin/gdb."
0 commit comments