Skip to content

Commit

Permalink
Add a few missing brightscript.debug settings (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Dec 7, 2023
1 parent 45df527 commit 1a4b59d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2307,6 +2307,35 @@
"default": false,
"description": "Delete any currently installed dev channel before starting the debug session",
"scope": "resource"
},
"brightscript.debug.sceneGraphDebugCommandsPort": {
"type": "number",
"default": 8080,
"description": "Port for sending SceneGraph debug commands",
"scope": "resource"
},
"brightscript.debug.remoteControlMode": {
"oneOf": [
{
"type": "object",
"description": "Options for activating and deactivating remote control mode",
"properties": {
"activateOnSessionStart": {
"type": "boolean",
"description": "Activate remote control mode on debug session start"
},
"deactivateOnSessionEnd": {
"type": "boolean",
"description": "Deactivate remote control mode on session end"
}
}
},
{
"type": "boolean",
"description": "Activate on session start, deactivate on session end."
}
],
"scope": "resource"
}
}
},
Expand Down

0 comments on commit 1a4b59d

Please sign in to comment.