From 1a4b59dba07d823bcdda85bf0a82bfd200aad70f Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Thu, 7 Dec 2023 14:10:24 -0500 Subject: [PATCH] Add a few missing brightscript.debug settings (#535) --- package.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/package.json b/package.json index 4b984c9f..051bfbac 100644 --- a/package.json +++ b/package.json @@ -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" } } },