JavaScript.json

   1{
   2  "allOf": [
   3    {
   4      "if": {
   5        "properties": { "type": { "const": "pwa-node" }, "request": { "const": "launch" } },
   6        "required": ["type", "request"]
   7      },
   8      "then": {
   9        "properties": {
  10          "args": {
  11            "default": [],
  12            "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
  13            "items": { "type": "string" },
  14            "tags": ["setup"],
  15            "type": ["array", "string"]
  16          },
  17          "attachSimplePort": {
  18            "default": 9229,
  19            "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
  20            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
  21          },
  22          "autoAttachChildProcesses": {
  23            "default": true,
  24            "description": "Attach debugger to new child processes automatically.",
  25            "type": "boolean"
  26          },
  27          "cascadeTerminateToConfigurations": {
  28            "default": [],
  29            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
  30            "items": { "type": "string", "uniqueItems": true },
  31            "type": "array"
  32          },
  33          "console": {
  34            "default": "internalConsole",
  35            "description": "Where to launch the debug target.",
  36            "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
  37            "enumDescriptions": [
  38              "VS Code Debug Console (which doesn't support to read input from a program)",
  39              "VS Code's integrated terminal",
  40              "External terminal that can be configured via user settings"
  41            ],
  42            "type": "string"
  43          },
  44          "customDescriptionGenerator": {
  45            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
  46            "type": "string"
  47          },
  48          "customPropertiesGenerator": {
  49            "deprecated": true,
  50            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
  51            "type": "string"
  52          },
  53          "cwd": {
  54            "default": "${ZED_WORKTREE_ROOT}",
  55            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
  56            "tags": ["setup"],
  57            "type": "string"
  58          },
  59          "enableContentValidation": {
  60            "default": true,
  61            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
  62            "type": "boolean"
  63          },
  64          "enableDWARF": {
  65            "default": true,
  66            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
  67            "type": "boolean"
  68          },
  69          "env": {
  70            "additionalProperties": { "type": ["string", "null"] },
  71            "default": {},
  72            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
  73            "tags": ["setup"],
  74            "type": "object"
  75          },
  76          "envFile": {
  77            "default": "${ZED_WORKTREE_ROOT}/.env",
  78            "description": "Absolute path to a file containing environment variable definitions.",
  79            "type": "string"
  80          },
  81          "experimentalNetworking": {
  82            "default": "auto",
  83            "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
  84            "enum": ["auto", "on", "off"],
  85            "type": "string"
  86          },
  87          "killBehavior": {
  88            "default": "forceful",
  89            "enum": ["forceful", "polite", "none"],
  90            "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
  91            "type": "string"
  92          },
  93          "localRoot": {
  94            "default": null,
  95            "description": "Path to the local directory containing the program.",
  96            "type": ["string", "null"]
  97          },
  98          "nodeVersionHint": {
  99            "default": 12,
 100            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
 101            "minimum": 8,
 102            "type": "number"
 103          },
 104          "outFiles": {
 105            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
 106            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
 107            "items": { "type": "string" },
 108            "tags": ["setup"],
 109            "type": ["array"]
 110          },
 111          "outputCapture": {
 112            "default": "console",
 113            "enum": ["console", "std"],
 114            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
 115          },
 116          "pauseForSourceMap": {
 117            "default": false,
 118            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
 119            "type": "boolean"
 120          },
 121          "profileStartup": {
 122            "default": true,
 123            "description": "If true, will start profiling as soon as the process launches",
 124            "type": "boolean"
 125          },
 126          "program": {
 127            "default": "",
 128            "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
 129            "tags": ["setup"],
 130            "type": "string"
 131          },
 132          "remoteRoot": {
 133            "default": null,
 134            "description": "Absolute path to the remote directory containing the program.",
 135            "type": ["string", "null"]
 136          },
 137          "resolveSourceMapLocations": {
 138            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
 139            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
 140            "items": { "type": "string" },
 141            "type": ["array", "null"]
 142          },
 143          "restart": {
 144            "default": true,
 145            "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
 146            "oneOf": [
 147              { "type": "boolean" },
 148              {
 149                "properties": {
 150                  "delay": { "default": 1000, "minimum": 0, "type": "number" },
 151                  "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
 152                },
 153                "type": "object"
 154              }
 155            ]
 156          },
 157          "runtimeArgs": {
 158            "default": [],
 159            "description": "Optional arguments passed to the runtime executable.",
 160            "items": { "type": "string" },
 161            "tags": ["setup"],
 162            "type": "array"
 163          },
 164          "runtimeExecutable": {
 165            "default": "node",
 166            "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
 167            "type": ["string", "null"]
 168          },
 169          "runtimeSourcemapPausePatterns": {
 170            "default": [],
 171            "items": { "type": "string" },
 172            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
 173            "type": "array"
 174          },
 175          "runtimeVersion": {
 176            "default": "default",
 177            "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
 178            "type": "string"
 179          },
 180          "showAsyncStacks": {
 181            "default": true,
 182            "description": "Show the async calls that led to the current call stack.",
 183            "oneOf": [
 184              { "type": "boolean" },
 185              {
 186                "properties": { "onAttach": { "default": 32, "type": "number" } },
 187                "required": ["onAttach"],
 188                "type": "object"
 189              },
 190              {
 191                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
 192                "required": ["onceBreakpointResolved"],
 193                "type": "object"
 194              }
 195            ]
 196          },
 197          "skipFiles": {
 198            "default": ["${/**"],
 199            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
 200            "type": "array"
 201          },
 202          "smartStep": {
 203            "default": true,
 204            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
 205            "type": "boolean"
 206          },
 207          "sourceMapPathOverrides": {
 208            "default": {
 209              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
 210              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
 211              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
 212            },
 213            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
 214            "type": "object"
 215          },
 216          "sourceMapRenames": {
 217            "default": true,
 218            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
 219            "type": "boolean"
 220          },
 221          "sourceMaps": {
 222            "default": true,
 223            "description": "Use JavaScript source maps (if they exist).",
 224            "type": "boolean"
 225          },
 226          "stopOnEntry": {
 227            "default": true,
 228            "description": "Automatically stop program after launch.",
 229            "type": ["boolean", "string"]
 230          },
 231          "timeout": {
 232            "default": 10000,
 233            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
 234            "type": "number"
 235          },
 236          "timeouts": {
 237            "additionalProperties": false,
 238            "default": {},
 239            "description": "Timeouts for several debugger operations.",
 240            "markdownDescription": "Timeouts for several debugger operations.",
 241            "properties": {
 242              "hoverEvaluation": {
 243                "default": 500,
 244                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
 245                "type": "number"
 246              },
 247              "sourceMapCumulativePause": {
 248                "default": 1000,
 249                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
 250                "type": "number"
 251              },
 252              "sourceMapMinPause": {
 253                "default": 1000,
 254                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
 255                "type": "number"
 256              }
 257            },
 258            "type": "object"
 259          },
 260          "trace": {
 261            "default": true,
 262            "description": "Configures what diagnostic output is produced.",
 263            "oneOf": [
 264              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
 265              {
 266                "additionalProperties": false,
 267                "properties": {
 268                  "logFile": {
 269                    "description": "Configures where on disk logs are written.",
 270                    "type": ["string", "null"]
 271                  },
 272                  "stdio": {
 273                    "description": "Whether to return trace data from the launched application or browser.",
 274                    "type": "boolean"
 275                  }
 276                },
 277                "type": "object"
 278              }
 279            ]
 280          }
 281        }
 282      }
 283    },
 284    {
 285      "if": {
 286        "properties": { "type": { "const": "pwa-node" }, "request": { "const": "attach" } },
 287        "required": ["type", "request"]
 288      },
 289      "then": {
 290        "properties": {
 291          "address": {
 292            "default": "localhost",
 293            "description": "TCP/IP address of process to be debugged. Default is 'localhost'.",
 294            "type": "string"
 295          },
 296          "attachExistingChildren": {
 297            "default": false,
 298            "description": "Whether to attempt to attach to already-spawned child processes.",
 299            "type": "boolean"
 300          },
 301          "autoAttachChildProcesses": {
 302            "default": true,
 303            "description": "Attach debugger to new child processes automatically.",
 304            "type": "boolean"
 305          },
 306          "cascadeTerminateToConfigurations": {
 307            "default": [],
 308            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
 309            "items": { "type": "string", "uniqueItems": true },
 310            "type": "array"
 311          },
 312          "continueOnAttach": {
 313            "default": true,
 314            "markdownDescription": "If true, we'll automatically resume programs launched and waiting on `--inspect-brk`",
 315            "type": "boolean"
 316          },
 317          "customDescriptionGenerator": {
 318            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
 319            "type": "string"
 320          },
 321          "customPropertiesGenerator": {
 322            "deprecated": true,
 323            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
 324            "type": "string"
 325          },
 326          "cwd": {
 327            "default": "${ZED_WORKTREE_ROOT}",
 328            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
 329            "tags": ["setup"],
 330            "type": "string"
 331          },
 332          "enableContentValidation": {
 333            "default": true,
 334            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
 335            "type": "boolean"
 336          },
 337          "enableDWARF": {
 338            "default": true,
 339            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
 340            "type": "boolean"
 341          },
 342          "env": {
 343            "additionalProperties": { "type": ["string", "null"] },
 344            "default": {},
 345            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
 346            "tags": ["setup"],
 347            "type": "object"
 348          },
 349          "envFile": {
 350            "default": "${ZED_WORKTREE_ROOT}/.env",
 351            "description": "Absolute path to a file containing environment variable definitions.",
 352            "type": "string"
 353          },
 354          "localRoot": {
 355            "default": null,
 356            "description": "Path to the local directory containing the program.",
 357            "type": ["string", "null"]
 358          },
 359          "nodeVersionHint": {
 360            "default": 12,
 361            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
 362            "minimum": 8,
 363            "type": "number"
 364          },
 365          "outFiles": {
 366            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
 367            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
 368            "items": { "type": "string" },
 369            "tags": ["setup"],
 370            "type": ["array"]
 371          },
 372          "outputCapture": {
 373            "default": "console",
 374            "enum": ["console", "std"],
 375            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
 376          },
 377          "pauseForSourceMap": {
 378            "default": false,
 379            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
 380            "type": "boolean"
 381          },
 382          "port": {
 383            "default": 9229,
 384            "description": "Debug port to attach to. Default is 9229.",
 385            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
 386            "tags": ["setup"]
 387          },
 388          "processId": {
 389            "default": "${command:PickProcess}",
 390            "description": "ID of process to attach to.",
 391            "type": "string"
 392          },
 393          "remoteHostHeader": {
 394            "description": "Explicit Host header to use when connecting to the websocket of inspector. If unspecified, the host header will be set to 'localhost'. This is useful when the inspector is running behind a proxy that only accept particular Host header.",
 395            "type": "string"
 396          },
 397          "remoteRoot": {
 398            "default": null,
 399            "description": "Absolute path to the remote directory containing the program.",
 400            "type": ["string", "null"]
 401          },
 402          "resolveSourceMapLocations": {
 403            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
 404            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
 405            "items": { "type": "string" },
 406            "type": ["array", "null"]
 407          },
 408          "restart": {
 409            "default": true,
 410            "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
 411            "oneOf": [
 412              { "type": "boolean" },
 413              {
 414                "properties": {
 415                  "delay": { "default": 1000, "minimum": 0, "type": "number" },
 416                  "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
 417                },
 418                "type": "object"
 419              }
 420            ]
 421          },
 422          "runtimeSourcemapPausePatterns": {
 423            "default": [],
 424            "items": { "type": "string" },
 425            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
 426            "type": "array"
 427          },
 428          "showAsyncStacks": {
 429            "default": true,
 430            "description": "Show the async calls that led to the current call stack.",
 431            "oneOf": [
 432              { "type": "boolean" },
 433              {
 434                "properties": { "onAttach": { "default": 32, "type": "number" } },
 435                "required": ["onAttach"],
 436                "type": "object"
 437              },
 438              {
 439                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
 440                "required": ["onceBreakpointResolved"],
 441                "type": "object"
 442              }
 443            ]
 444          },
 445          "skipFiles": {
 446            "default": ["${/**"],
 447            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
 448            "type": "array"
 449          },
 450          "smartStep": {
 451            "default": true,
 452            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
 453            "type": "boolean"
 454          },
 455          "sourceMapPathOverrides": {
 456            "default": {
 457              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
 458              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
 459              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
 460            },
 461            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
 462            "type": "object"
 463          },
 464          "sourceMapRenames": {
 465            "default": true,
 466            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
 467            "type": "boolean"
 468          },
 469          "sourceMaps": {
 470            "default": true,
 471            "description": "Use JavaScript source maps (if they exist).",
 472            "type": "boolean"
 473          },
 474          "timeout": {
 475            "default": 10000,
 476            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
 477            "type": "number"
 478          },
 479          "timeouts": {
 480            "additionalProperties": false,
 481            "default": {},
 482            "description": "Timeouts for several debugger operations.",
 483            "markdownDescription": "Timeouts for several debugger operations.",
 484            "properties": {
 485              "hoverEvaluation": {
 486                "default": 500,
 487                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
 488                "type": "number"
 489              },
 490              "sourceMapCumulativePause": {
 491                "default": 1000,
 492                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
 493                "type": "number"
 494              },
 495              "sourceMapMinPause": {
 496                "default": 1000,
 497                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
 498                "type": "number"
 499              }
 500            },
 501            "type": "object"
 502          },
 503          "trace": {
 504            "default": true,
 505            "description": "Configures what diagnostic output is produced.",
 506            "oneOf": [
 507              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
 508              {
 509                "additionalProperties": false,
 510                "properties": {
 511                  "logFile": {
 512                    "description": "Configures where on disk logs are written.",
 513                    "type": ["string", "null"]
 514                  },
 515                  "stdio": {
 516                    "description": "Whether to return trace data from the launched application or browser.",
 517                    "type": "boolean"
 518                  }
 519                },
 520                "type": "object"
 521              }
 522            ]
 523          },
 524          "websocketAddress": {
 525            "description": "Exact websocket address to attach to. If unspecified, it will be discovered from the address and port.",
 526            "type": "string"
 527          }
 528        }
 529      }
 530    },
 531    {
 532      "if": {
 533        "properties": { "type": { "const": "node" }, "request": { "const": "launch" } },
 534        "required": ["type", "request"]
 535      },
 536      "then": {
 537        "properties": {
 538          "args": {
 539            "default": [],
 540            "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
 541            "items": { "type": "string" },
 542            "tags": ["setup"],
 543            "type": ["array", "string"]
 544          },
 545          "attachSimplePort": {
 546            "default": 9229,
 547            "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
 548            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
 549          },
 550          "autoAttachChildProcesses": {
 551            "default": true,
 552            "description": "Attach debugger to new child processes automatically.",
 553            "type": "boolean"
 554          },
 555          "cascadeTerminateToConfigurations": {
 556            "default": [],
 557            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
 558            "items": { "type": "string", "uniqueItems": true },
 559            "type": "array"
 560          },
 561          "console": {
 562            "default": "internalConsole",
 563            "description": "Where to launch the debug target.",
 564            "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
 565            "enumDescriptions": [
 566              "VS Code Debug Console (which doesn't support to read input from a program)",
 567              "VS Code's integrated terminal",
 568              "External terminal that can be configured via user settings"
 569            ],
 570            "type": "string"
 571          },
 572          "customDescriptionGenerator": {
 573            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
 574            "type": "string"
 575          },
 576          "customPropertiesGenerator": {
 577            "deprecated": true,
 578            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
 579            "type": "string"
 580          },
 581          "cwd": {
 582            "default": "${ZED_WORKTREE_ROOT}",
 583            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
 584            "tags": ["setup"],
 585            "type": "string"
 586          },
 587          "enableContentValidation": {
 588            "default": true,
 589            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
 590            "type": "boolean"
 591          },
 592          "enableDWARF": {
 593            "default": true,
 594            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
 595            "type": "boolean"
 596          },
 597          "env": {
 598            "additionalProperties": { "type": ["string", "null"] },
 599            "default": {},
 600            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
 601            "tags": ["setup"],
 602            "type": "object"
 603          },
 604          "envFile": {
 605            "default": "${ZED_WORKTREE_ROOT}/.env",
 606            "description": "Absolute path to a file containing environment variable definitions.",
 607            "type": "string"
 608          },
 609          "experimentalNetworking": {
 610            "default": "auto",
 611            "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
 612            "enum": ["auto", "on", "off"],
 613            "type": "string"
 614          },
 615          "killBehavior": {
 616            "default": "forceful",
 617            "enum": ["forceful", "polite", "none"],
 618            "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
 619            "type": "string"
 620          },
 621          "localRoot": {
 622            "default": null,
 623            "description": "Path to the local directory containing the program.",
 624            "type": ["string", "null"]
 625          },
 626          "nodeVersionHint": {
 627            "default": 12,
 628            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
 629            "minimum": 8,
 630            "type": "number"
 631          },
 632          "outFiles": {
 633            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
 634            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
 635            "items": { "type": "string" },
 636            "tags": ["setup"],
 637            "type": ["array"]
 638          },
 639          "outputCapture": {
 640            "default": "console",
 641            "enum": ["console", "std"],
 642            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
 643          },
 644          "pauseForSourceMap": {
 645            "default": false,
 646            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
 647            "type": "boolean"
 648          },
 649          "profileStartup": {
 650            "default": true,
 651            "description": "If true, will start profiling as soon as the process launches",
 652            "type": "boolean"
 653          },
 654          "program": {
 655            "default": "",
 656            "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
 657            "tags": ["setup"],
 658            "type": "string"
 659          },
 660          "remoteRoot": {
 661            "default": null,
 662            "description": "Absolute path to the remote directory containing the program.",
 663            "type": ["string", "null"]
 664          },
 665          "resolveSourceMapLocations": {
 666            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
 667            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
 668            "items": { "type": "string" },
 669            "type": ["array", "null"]
 670          },
 671          "restart": {
 672            "default": true,
 673            "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
 674            "oneOf": [
 675              { "type": "boolean" },
 676              {
 677                "properties": {
 678                  "delay": { "default": 1000, "minimum": 0, "type": "number" },
 679                  "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
 680                },
 681                "type": "object"
 682              }
 683            ]
 684          },
 685          "runtimeArgs": {
 686            "default": [],
 687            "description": "Optional arguments passed to the runtime executable.",
 688            "items": { "type": "string" },
 689            "tags": ["setup"],
 690            "type": "array"
 691          },
 692          "runtimeExecutable": {
 693            "default": "node",
 694            "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
 695            "type": ["string", "null"]
 696          },
 697          "runtimeSourcemapPausePatterns": {
 698            "default": [],
 699            "items": { "type": "string" },
 700            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
 701            "type": "array"
 702          },
 703          "runtimeVersion": {
 704            "default": "default",
 705            "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
 706            "type": "string"
 707          },
 708          "showAsyncStacks": {
 709            "default": true,
 710            "description": "Show the async calls that led to the current call stack.",
 711            "oneOf": [
 712              { "type": "boolean" },
 713              {
 714                "properties": { "onAttach": { "default": 32, "type": "number" } },
 715                "required": ["onAttach"],
 716                "type": "object"
 717              },
 718              {
 719                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
 720                "required": ["onceBreakpointResolved"],
 721                "type": "object"
 722              }
 723            ]
 724          },
 725          "skipFiles": {
 726            "default": ["${/**"],
 727            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
 728            "type": "array"
 729          },
 730          "smartStep": {
 731            "default": true,
 732            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
 733            "type": "boolean"
 734          },
 735          "sourceMapPathOverrides": {
 736            "default": {
 737              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
 738              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
 739              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
 740            },
 741            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
 742            "type": "object"
 743          },
 744          "sourceMapRenames": {
 745            "default": true,
 746            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
 747            "type": "boolean"
 748          },
 749          "sourceMaps": {
 750            "default": true,
 751            "description": "Use JavaScript source maps (if they exist).",
 752            "type": "boolean"
 753          },
 754          "stopOnEntry": {
 755            "default": true,
 756            "description": "Automatically stop program after launch.",
 757            "type": ["boolean", "string"]
 758          },
 759          "timeout": {
 760            "default": 10000,
 761            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
 762            "type": "number"
 763          },
 764          "timeouts": {
 765            "additionalProperties": false,
 766            "default": {},
 767            "description": "Timeouts for several debugger operations.",
 768            "markdownDescription": "Timeouts for several debugger operations.",
 769            "properties": {
 770              "hoverEvaluation": {
 771                "default": 500,
 772                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
 773                "type": "number"
 774              },
 775              "sourceMapCumulativePause": {
 776                "default": 1000,
 777                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
 778                "type": "number"
 779              },
 780              "sourceMapMinPause": {
 781                "default": 1000,
 782                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
 783                "type": "number"
 784              }
 785            },
 786            "type": "object"
 787          },
 788          "trace": {
 789            "default": true,
 790            "description": "Configures what diagnostic output is produced.",
 791            "oneOf": [
 792              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
 793              {
 794                "additionalProperties": false,
 795                "properties": {
 796                  "logFile": {
 797                    "description": "Configures where on disk logs are written.",
 798                    "type": ["string", "null"]
 799                  },
 800                  "stdio": {
 801                    "description": "Whether to return trace data from the launched application or browser.",
 802                    "type": "boolean"
 803                  }
 804                },
 805                "type": "object"
 806              }
 807            ]
 808          }
 809        }
 810      }
 811    },
 812    {
 813      "if": {
 814        "properties": { "type": { "const": "node" }, "request": { "const": "attach" } },
 815        "required": ["type", "request"]
 816      },
 817      "then": {
 818        "properties": {
 819          "address": {
 820            "default": "localhost",
 821            "description": "TCP/IP address of process to be debugged. Default is 'localhost'.",
 822            "type": "string"
 823          },
 824          "attachExistingChildren": {
 825            "default": false,
 826            "description": "Whether to attempt to attach to already-spawned child processes.",
 827            "type": "boolean"
 828          },
 829          "autoAttachChildProcesses": {
 830            "default": true,
 831            "description": "Attach debugger to new child processes automatically.",
 832            "type": "boolean"
 833          },
 834          "cascadeTerminateToConfigurations": {
 835            "default": [],
 836            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
 837            "items": { "type": "string", "uniqueItems": true },
 838            "type": "array"
 839          },
 840          "continueOnAttach": {
 841            "default": true,
 842            "markdownDescription": "If true, we'll automatically resume programs launched and waiting on `--inspect-brk`",
 843            "type": "boolean"
 844          },
 845          "customDescriptionGenerator": {
 846            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
 847            "type": "string"
 848          },
 849          "customPropertiesGenerator": {
 850            "deprecated": true,
 851            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
 852            "type": "string"
 853          },
 854          "cwd": {
 855            "default": "${ZED_WORKTREE_ROOT}",
 856            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
 857            "tags": ["setup"],
 858            "type": "string"
 859          },
 860          "enableContentValidation": {
 861            "default": true,
 862            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
 863            "type": "boolean"
 864          },
 865          "enableDWARF": {
 866            "default": true,
 867            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
 868            "type": "boolean"
 869          },
 870          "env": {
 871            "additionalProperties": { "type": ["string", "null"] },
 872            "default": {},
 873            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
 874            "tags": ["setup"],
 875            "type": "object"
 876          },
 877          "envFile": {
 878            "default": "${ZED_WORKTREE_ROOT}/.env",
 879            "description": "Absolute path to a file containing environment variable definitions.",
 880            "type": "string"
 881          },
 882          "localRoot": {
 883            "default": null,
 884            "description": "Path to the local directory containing the program.",
 885            "type": ["string", "null"]
 886          },
 887          "nodeVersionHint": {
 888            "default": 12,
 889            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
 890            "minimum": 8,
 891            "type": "number"
 892          },
 893          "outFiles": {
 894            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
 895            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
 896            "items": { "type": "string" },
 897            "tags": ["setup"],
 898            "type": ["array"]
 899          },
 900          "outputCapture": {
 901            "default": "console",
 902            "enum": ["console", "std"],
 903            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
 904          },
 905          "pauseForSourceMap": {
 906            "default": false,
 907            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
 908            "type": "boolean"
 909          },
 910          "port": {
 911            "default": 9229,
 912            "description": "Debug port to attach to. Default is 9229.",
 913            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
 914            "tags": ["setup"]
 915          },
 916          "processId": {
 917            "default": "${command:PickProcess}",
 918            "description": "ID of process to attach to.",
 919            "type": "string"
 920          },
 921          "remoteHostHeader": {
 922            "description": "Explicit Host header to use when connecting to the websocket of inspector. If unspecified, the host header will be set to 'localhost'. This is useful when the inspector is running behind a proxy that only accept particular Host header.",
 923            "type": "string"
 924          },
 925          "remoteRoot": {
 926            "default": null,
 927            "description": "Absolute path to the remote directory containing the program.",
 928            "type": ["string", "null"]
 929          },
 930          "resolveSourceMapLocations": {
 931            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
 932            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
 933            "items": { "type": "string" },
 934            "type": ["array", "null"]
 935          },
 936          "restart": {
 937            "default": true,
 938            "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
 939            "oneOf": [
 940              { "type": "boolean" },
 941              {
 942                "properties": {
 943                  "delay": { "default": 1000, "minimum": 0, "type": "number" },
 944                  "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
 945                },
 946                "type": "object"
 947              }
 948            ]
 949          },
 950          "runtimeSourcemapPausePatterns": {
 951            "default": [],
 952            "items": { "type": "string" },
 953            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
 954            "type": "array"
 955          },
 956          "showAsyncStacks": {
 957            "default": true,
 958            "description": "Show the async calls that led to the current call stack.",
 959            "oneOf": [
 960              { "type": "boolean" },
 961              {
 962                "properties": { "onAttach": { "default": 32, "type": "number" } },
 963                "required": ["onAttach"],
 964                "type": "object"
 965              },
 966              {
 967                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
 968                "required": ["onceBreakpointResolved"],
 969                "type": "object"
 970              }
 971            ]
 972          },
 973          "skipFiles": {
 974            "default": ["${/**"],
 975            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
 976            "type": "array"
 977          },
 978          "smartStep": {
 979            "default": true,
 980            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
 981            "type": "boolean"
 982          },
 983          "sourceMapPathOverrides": {
 984            "default": {
 985              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
 986              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
 987              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
 988            },
 989            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
 990            "type": "object"
 991          },
 992          "sourceMapRenames": {
 993            "default": true,
 994            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
 995            "type": "boolean"
 996          },
 997          "sourceMaps": {
 998            "default": true,
 999            "description": "Use JavaScript source maps (if they exist).",
1000            "type": "boolean"
1001          },
1002          "timeout": {
1003            "default": 10000,
1004            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
1005            "type": "number"
1006          },
1007          "timeouts": {
1008            "additionalProperties": false,
1009            "default": {},
1010            "description": "Timeouts for several debugger operations.",
1011            "markdownDescription": "Timeouts for several debugger operations.",
1012            "properties": {
1013              "hoverEvaluation": {
1014                "default": 500,
1015                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
1016                "type": "number"
1017              },
1018              "sourceMapCumulativePause": {
1019                "default": 1000,
1020                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
1021                "type": "number"
1022              },
1023              "sourceMapMinPause": {
1024                "default": 1000,
1025                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
1026                "type": "number"
1027              }
1028            },
1029            "type": "object"
1030          },
1031          "trace": {
1032            "default": true,
1033            "description": "Configures what diagnostic output is produced.",
1034            "oneOf": [
1035              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
1036              {
1037                "additionalProperties": false,
1038                "properties": {
1039                  "logFile": {
1040                    "description": "Configures where on disk logs are written.",
1041                    "type": ["string", "null"]
1042                  },
1043                  "stdio": {
1044                    "description": "Whether to return trace data from the launched application or browser.",
1045                    "type": "boolean"
1046                  }
1047                },
1048                "type": "object"
1049              }
1050            ]
1051          },
1052          "websocketAddress": {
1053            "description": "Exact websocket address to attach to. If unspecified, it will be discovered from the address and port.",
1054            "type": "string"
1055          }
1056        }
1057      }
1058    },
1059    {
1060      "if": {
1061        "properties": { "type": { "const": "node-terminal" }, "request": { "const": "launch" } },
1062        "required": ["type", "request"]
1063      },
1064      "then": {
1065        "properties": {
1066          "autoAttachChildProcesses": {
1067            "default": true,
1068            "description": "Attach debugger to new child processes automatically.",
1069            "type": "boolean"
1070          },
1071          "cascadeTerminateToConfigurations": {
1072            "default": [],
1073            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
1074            "items": { "type": "string", "uniqueItems": true },
1075            "type": "array"
1076          },
1077          "command": {
1078            "default": "npm start",
1079            "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
1080            "tags": ["setup"],
1081            "type": ["string", "null"]
1082          },
1083          "customDescriptionGenerator": {
1084            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
1085            "type": "string"
1086          },
1087          "customPropertiesGenerator": {
1088            "deprecated": true,
1089            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
1090            "type": "string"
1091          },
1092          "cwd": {
1093            "default": "${ZED_WORKTREE_ROOT}",
1094            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
1095            "tags": ["setup"],
1096            "type": "string"
1097          },
1098          "enableContentValidation": {
1099            "default": true,
1100            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
1101            "type": "boolean"
1102          },
1103          "enableDWARF": {
1104            "default": true,
1105            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
1106            "type": "boolean"
1107          },
1108          "env": {
1109            "additionalProperties": { "type": ["string", "null"] },
1110            "default": {},
1111            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
1112            "tags": ["setup"],
1113            "type": "object"
1114          },
1115          "envFile": {
1116            "default": "${ZED_WORKTREE_ROOT}/.env",
1117            "description": "Absolute path to a file containing environment variable definitions.",
1118            "type": "string"
1119          },
1120          "localRoot": {
1121            "default": null,
1122            "description": "Path to the local directory containing the program.",
1123            "type": ["string", "null"]
1124          },
1125          "nodeVersionHint": {
1126            "default": 12,
1127            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
1128            "minimum": 8,
1129            "type": "number"
1130          },
1131          "outFiles": {
1132            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
1133            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
1134            "items": { "type": "string" },
1135            "tags": ["setup"],
1136            "type": ["array"]
1137          },
1138          "outputCapture": {
1139            "default": "console",
1140            "enum": ["console", "std"],
1141            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
1142          },
1143          "pauseForSourceMap": {
1144            "default": false,
1145            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
1146            "type": "boolean"
1147          },
1148          "remoteRoot": {
1149            "default": null,
1150            "description": "Absolute path to the remote directory containing the program.",
1151            "type": ["string", "null"]
1152          },
1153          "resolveSourceMapLocations": {
1154            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
1155            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
1156            "items": { "type": "string" },
1157            "type": ["array", "null"]
1158          },
1159          "runtimeSourcemapPausePatterns": {
1160            "default": [],
1161            "items": { "type": "string" },
1162            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
1163            "type": "array"
1164          },
1165          "showAsyncStacks": {
1166            "default": true,
1167            "description": "Show the async calls that led to the current call stack.",
1168            "oneOf": [
1169              { "type": "boolean" },
1170              {
1171                "properties": { "onAttach": { "default": 32, "type": "number" } },
1172                "required": ["onAttach"],
1173                "type": "object"
1174              },
1175              {
1176                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
1177                "required": ["onceBreakpointResolved"],
1178                "type": "object"
1179              }
1180            ]
1181          },
1182          "skipFiles": {
1183            "default": ["${/**"],
1184            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
1185            "type": "array"
1186          },
1187          "smartStep": {
1188            "default": true,
1189            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
1190            "type": "boolean"
1191          },
1192          "sourceMapPathOverrides": {
1193            "default": {
1194              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
1195              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
1196              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
1197            },
1198            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
1199            "type": "object"
1200          },
1201          "sourceMapRenames": {
1202            "default": true,
1203            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
1204            "type": "boolean"
1205          },
1206          "sourceMaps": {
1207            "default": true,
1208            "description": "Use JavaScript source maps (if they exist).",
1209            "type": "boolean"
1210          },
1211          "timeout": {
1212            "default": 10000,
1213            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
1214            "type": "number"
1215          },
1216          "timeouts": {
1217            "additionalProperties": false,
1218            "default": {},
1219            "description": "Timeouts for several debugger operations.",
1220            "markdownDescription": "Timeouts for several debugger operations.",
1221            "properties": {
1222              "hoverEvaluation": {
1223                "default": 500,
1224                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
1225                "type": "number"
1226              },
1227              "sourceMapCumulativePause": {
1228                "default": 1000,
1229                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
1230                "type": "number"
1231              },
1232              "sourceMapMinPause": {
1233                "default": 1000,
1234                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
1235                "type": "number"
1236              }
1237            },
1238            "type": "object"
1239          },
1240          "trace": {
1241            "default": true,
1242            "description": "Configures what diagnostic output is produced.",
1243            "oneOf": [
1244              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
1245              {
1246                "additionalProperties": false,
1247                "properties": {
1248                  "logFile": {
1249                    "description": "Configures where on disk logs are written.",
1250                    "type": ["string", "null"]
1251                  },
1252                  "stdio": {
1253                    "description": "Whether to return trace data from the launched application or browser.",
1254                    "type": "boolean"
1255                  }
1256                },
1257                "type": "object"
1258              }
1259            ]
1260          }
1261        }
1262      }
1263    },
1264    {
1265      "if": {
1266        "properties": { "type": { "const": "pwa-extensionHost" }, "request": { "const": "launch" } },
1267        "required": ["type", "request"]
1268      },
1269      "then": {
1270        "properties": {
1271          "args": {
1272            "default": ["--extensionDevelopmentPath=${ZED_WORKTREE_ROOT}"],
1273            "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
1274            "items": { "type": "string" },
1275            "tags": ["setup"],
1276            "type": "array"
1277          },
1278          "autoAttachChildProcesses": {
1279            "default": true,
1280            "description": "Attach debugger to new child processes automatically.",
1281            "type": "boolean"
1282          },
1283          "cascadeTerminateToConfigurations": {
1284            "default": [],
1285            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
1286            "items": { "type": "string", "uniqueItems": true },
1287            "type": "array"
1288          },
1289          "customDescriptionGenerator": {
1290            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
1291            "type": "string"
1292          },
1293          "customPropertiesGenerator": {
1294            "deprecated": true,
1295            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
1296            "type": "string"
1297          },
1298          "cwd": {
1299            "default": "${ZED_WORKTREE_ROOT}",
1300            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
1301            "tags": ["setup"],
1302            "type": "string"
1303          },
1304          "debugWebWorkerHost": {
1305            "default": true,
1306            "markdownDescription": "Configures whether we should try to attach to the web worker extension host.",
1307            "type": ["boolean"]
1308          },
1309          "debugWebviews": {
1310            "default": true,
1311            "markdownDescription": "Configures whether we should try to attach to webviews in the launched VS Code instance. This will only work in desktop VS Code.",
1312            "type": ["boolean"]
1313          },
1314          "enableContentValidation": {
1315            "default": true,
1316            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
1317            "type": "boolean"
1318          },
1319          "enableDWARF": {
1320            "default": true,
1321            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
1322            "type": "boolean"
1323          },
1324          "env": {
1325            "additionalProperties": { "type": ["string", "null"] },
1326            "default": {},
1327            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
1328            "tags": ["setup"],
1329            "type": "object"
1330          },
1331          "envFile": {
1332            "default": "${ZED_WORKTREE_ROOT}/.env",
1333            "description": "Absolute path to a file containing environment variable definitions.",
1334            "type": "string"
1335          },
1336          "localRoot": {
1337            "default": null,
1338            "description": "Path to the local directory containing the program.",
1339            "type": ["string", "null"]
1340          },
1341          "nodeVersionHint": {
1342            "default": 12,
1343            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
1344            "minimum": 8,
1345            "type": "number"
1346          },
1347          "outFiles": {
1348            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
1349            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
1350            "items": { "type": "string" },
1351            "tags": ["setup"],
1352            "type": ["array"]
1353          },
1354          "outputCapture": {
1355            "default": "console",
1356            "enum": ["console", "std"],
1357            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
1358          },
1359          "pauseForSourceMap": {
1360            "default": false,
1361            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
1362            "type": "boolean"
1363          },
1364          "remoteRoot": {
1365            "default": null,
1366            "description": "Absolute path to the remote directory containing the program.",
1367            "type": ["string", "null"]
1368          },
1369          "rendererDebugOptions": {
1370            "default": { "webRoot": "${ZED_WORKTREE_ROOT}" },
1371            "markdownDescription": "Chrome launch options used when attaching to the renderer process, with `debugWebviews` or `debugWebWorkerHost`.",
1372            "properties": {
1373              "address": {
1374                "default": "localhost",
1375                "description": "IP address or hostname the debugged browser is listening on.",
1376                "type": "string"
1377              },
1378              "browserAttachLocation": {
1379                "default": null,
1380                "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
1381                "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
1382              },
1383              "cascadeTerminateToConfigurations": {
1384                "default": [],
1385                "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
1386                "items": { "type": "string", "uniqueItems": true },
1387                "type": "array"
1388              },
1389              "customDescriptionGenerator": {
1390                "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
1391                "type": "string"
1392              },
1393              "customPropertiesGenerator": {
1394                "deprecated": true,
1395                "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
1396                "type": "string"
1397              },
1398              "disableNetworkCache": {
1399                "default": true,
1400                "description": "Controls whether to skip the network cache for each request",
1401                "type": "boolean"
1402              },
1403              "enableContentValidation": {
1404                "default": true,
1405                "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
1406                "type": "boolean"
1407              },
1408              "enableDWARF": {
1409                "default": true,
1410                "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
1411                "type": "boolean"
1412              },
1413              "inspectUri": {
1414                "default": null,
1415                "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
1416                "type": ["string", "null"]
1417              },
1418              "outFiles": {
1419                "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
1420                "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
1421                "items": { "type": "string" },
1422                "tags": ["setup"],
1423                "type": ["array"]
1424              },
1425              "outputCapture": {
1426                "default": "console",
1427                "enum": ["console", "std"],
1428                "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
1429              },
1430              "pathMapping": {
1431                "default": {},
1432                "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
1433                "type": "object"
1434              },
1435              "pauseForSourceMap": {
1436                "default": false,
1437                "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
1438                "type": "boolean"
1439              },
1440              "perScriptSourcemaps": {
1441                "default": "auto",
1442                "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
1443                "enum": ["yes", "no", "auto"],
1444                "type": "string"
1445              },
1446              "port": {
1447                "default": 9229,
1448                "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
1449                "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
1450                "tags": ["setup"]
1451              },
1452              "resolveSourceMapLocations": {
1453                "default": null,
1454                "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
1455                "items": { "type": "string" },
1456                "type": ["array", "null"]
1457              },
1458              "restart": {
1459                "default": false,
1460                "markdownDescription": "Whether to reconnect if the browser connection is closed",
1461                "type": "boolean"
1462              },
1463              "server": {
1464                "oneOf": [
1465                  {
1466                    "additionalProperties": false,
1467                    "default": { "program": "node my-server.js" },
1468                    "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
1469                    "properties": {
1470                      "args": {
1471                        "default": [],
1472                        "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
1473                        "items": { "type": "string" },
1474                        "tags": ["setup"],
1475                        "type": ["array", "string"]
1476                      },
1477                      "attachSimplePort": {
1478                        "default": 9229,
1479                        "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
1480                        "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
1481                      },
1482                      "autoAttachChildProcesses": {
1483                        "default": true,
1484                        "description": "Attach debugger to new child processes automatically.",
1485                        "type": "boolean"
1486                      },
1487                      "cascadeTerminateToConfigurations": {
1488                        "default": [],
1489                        "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
1490                        "items": { "type": "string", "uniqueItems": true },
1491                        "type": "array"
1492                      },
1493                      "console": {
1494                        "default": "internalConsole",
1495                        "description": "Where to launch the debug target.",
1496                        "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
1497                        "enumDescriptions": [
1498                          "VS Code Debug Console (which doesn't support to read input from a program)",
1499                          "VS Code's integrated terminal",
1500                          "External terminal that can be configured via user settings"
1501                        ],
1502                        "type": "string"
1503                      },
1504                      "customDescriptionGenerator": {
1505                        "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
1506                        "type": "string"
1507                      },
1508                      "customPropertiesGenerator": {
1509                        "deprecated": true,
1510                        "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
1511                        "type": "string"
1512                      },
1513                      "cwd": {
1514                        "default": "${ZED_WORKTREE_ROOT}",
1515                        "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
1516                        "tags": ["setup"],
1517                        "type": "string"
1518                      },
1519                      "enableContentValidation": {
1520                        "default": true,
1521                        "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
1522                        "type": "boolean"
1523                      },
1524                      "enableDWARF": {
1525                        "default": true,
1526                        "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
1527                        "type": "boolean"
1528                      },
1529                      "env": {
1530                        "additionalProperties": { "type": ["string", "null"] },
1531                        "default": {},
1532                        "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
1533                        "tags": ["setup"],
1534                        "type": "object"
1535                      },
1536                      "envFile": {
1537                        "default": "${ZED_WORKTREE_ROOT}/.env",
1538                        "description": "Absolute path to a file containing environment variable definitions.",
1539                        "type": "string"
1540                      },
1541                      "experimentalNetworking": {
1542                        "default": "auto",
1543                        "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
1544                        "enum": ["auto", "on", "off"],
1545                        "type": "string"
1546                      },
1547                      "killBehavior": {
1548                        "default": "forceful",
1549                        "enum": ["forceful", "polite", "none"],
1550                        "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
1551                        "type": "string"
1552                      },
1553                      "localRoot": {
1554                        "default": null,
1555                        "description": "Path to the local directory containing the program.",
1556                        "type": ["string", "null"]
1557                      },
1558                      "nodeVersionHint": {
1559                        "default": 12,
1560                        "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
1561                        "minimum": 8,
1562                        "type": "number"
1563                      },
1564                      "outFiles": {
1565                        "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
1566                        "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
1567                        "items": { "type": "string" },
1568                        "tags": ["setup"],
1569                        "type": ["array"]
1570                      },
1571                      "outputCapture": {
1572                        "default": "console",
1573                        "enum": ["console", "std"],
1574                        "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
1575                      },
1576                      "pauseForSourceMap": {
1577                        "default": false,
1578                        "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
1579                        "type": "boolean"
1580                      },
1581                      "profileStartup": {
1582                        "default": true,
1583                        "description": "If true, will start profiling as soon as the process launches",
1584                        "type": "boolean"
1585                      },
1586                      "program": {
1587                        "default": "",
1588                        "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
1589                        "tags": ["setup"],
1590                        "type": "string"
1591                      },
1592                      "remoteRoot": {
1593                        "default": null,
1594                        "description": "Absolute path to the remote directory containing the program.",
1595                        "type": ["string", "null"]
1596                      },
1597                      "resolveSourceMapLocations": {
1598                        "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
1599                        "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
1600                        "items": { "type": "string" },
1601                        "type": ["array", "null"]
1602                      },
1603                      "restart": {
1604                        "default": true,
1605                        "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
1606                        "oneOf": [
1607                          { "type": "boolean" },
1608                          {
1609                            "properties": {
1610                              "delay": { "default": 1000, "minimum": 0, "type": "number" },
1611                              "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
1612                            },
1613                            "type": "object"
1614                          }
1615                        ]
1616                      },
1617                      "runtimeArgs": {
1618                        "default": [],
1619                        "description": "Optional arguments passed to the runtime executable.",
1620                        "items": { "type": "string" },
1621                        "tags": ["setup"],
1622                        "type": "array"
1623                      },
1624                      "runtimeExecutable": {
1625                        "default": "node",
1626                        "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
1627                        "type": ["string", "null"]
1628                      },
1629                      "runtimeSourcemapPausePatterns": {
1630                        "default": [],
1631                        "items": { "type": "string" },
1632                        "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
1633                        "type": "array"
1634                      },
1635                      "runtimeVersion": {
1636                        "default": "default",
1637                        "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
1638                        "type": "string"
1639                      },
1640                      "showAsyncStacks": {
1641                        "default": true,
1642                        "description": "Show the async calls that led to the current call stack.",
1643                        "oneOf": [
1644                          { "type": "boolean" },
1645                          {
1646                            "properties": { "onAttach": { "default": 32, "type": "number" } },
1647                            "required": ["onAttach"],
1648                            "type": "object"
1649                          },
1650                          {
1651                            "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
1652                            "required": ["onceBreakpointResolved"],
1653                            "type": "object"
1654                          }
1655                        ]
1656                      },
1657                      "skipFiles": {
1658                        "default": ["${/**"],
1659                        "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
1660                        "type": "array"
1661                      },
1662                      "smartStep": {
1663                        "default": true,
1664                        "description": "Automatically step through generated code that cannot be mapped back to the original source.",
1665                        "type": "boolean"
1666                      },
1667                      "sourceMapPathOverrides": {
1668                        "default": {
1669                          "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
1670                          "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
1671                          "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
1672                        },
1673                        "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
1674                        "type": "object"
1675                      },
1676                      "sourceMapRenames": {
1677                        "default": true,
1678                        "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
1679                        "type": "boolean"
1680                      },
1681                      "sourceMaps": {
1682                        "default": true,
1683                        "description": "Use JavaScript source maps (if they exist).",
1684                        "type": "boolean"
1685                      },
1686                      "stopOnEntry": {
1687                        "default": true,
1688                        "description": "Automatically stop program after launch.",
1689                        "type": ["boolean", "string"]
1690                      },
1691                      "timeout": {
1692                        "default": 10000,
1693                        "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
1694                        "type": "number"
1695                      },
1696                      "timeouts": {
1697                        "additionalProperties": false,
1698                        "default": {},
1699                        "description": "Timeouts for several debugger operations.",
1700                        "markdownDescription": "Timeouts for several debugger operations.",
1701                        "properties": {
1702                          "hoverEvaluation": {
1703                            "default": 500,
1704                            "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
1705                            "type": "number"
1706                          },
1707                          "sourceMapCumulativePause": {
1708                            "default": 1000,
1709                            "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
1710                            "type": "number"
1711                          },
1712                          "sourceMapMinPause": {
1713                            "default": 1000,
1714                            "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
1715                            "type": "number"
1716                          }
1717                        },
1718                        "type": "object"
1719                      },
1720                      "trace": {
1721                        "default": true,
1722                        "description": "Configures what diagnostic output is produced.",
1723                        "oneOf": [
1724                          {
1725                            "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
1726                            "type": "boolean"
1727                          },
1728                          {
1729                            "additionalProperties": false,
1730                            "properties": {
1731                              "logFile": {
1732                                "description": "Configures where on disk logs are written.",
1733                                "type": ["string", "null"]
1734                              },
1735                              "stdio": {
1736                                "description": "Whether to return trace data from the launched application or browser.",
1737                                "type": "boolean"
1738                              }
1739                            },
1740                            "type": "object"
1741                          }
1742                        ]
1743                      }
1744                    },
1745                    "type": "object"
1746                  },
1747                  {
1748                    "additionalProperties": false,
1749                    "default": { "program": "npm start" },
1750                    "description": "JavaScript Debug Terminal",
1751                    "properties": {
1752                      "autoAttachChildProcesses": {
1753                        "default": true,
1754                        "description": "Attach debugger to new child processes automatically.",
1755                        "type": "boolean"
1756                      },
1757                      "cascadeTerminateToConfigurations": {
1758                        "default": [],
1759                        "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
1760                        "items": { "type": "string", "uniqueItems": true },
1761                        "type": "array"
1762                      },
1763                      "command": {
1764                        "default": "npm start",
1765                        "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
1766                        "tags": ["setup"],
1767                        "type": ["string", "null"]
1768                      },
1769                      "customDescriptionGenerator": {
1770                        "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
1771                        "type": "string"
1772                      },
1773                      "customPropertiesGenerator": {
1774                        "deprecated": true,
1775                        "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
1776                        "type": "string"
1777                      },
1778                      "cwd": {
1779                        "default": "${ZED_WORKTREE_ROOT}",
1780                        "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
1781                        "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
1782                        "tags": ["setup"],
1783                        "type": "string"
1784                      },
1785                      "enableContentValidation": {
1786                        "default": true,
1787                        "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
1788                        "type": "boolean"
1789                      },
1790                      "enableDWARF": {
1791                        "default": true,
1792                        "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
1793                        "type": "boolean"
1794                      },
1795                      "env": {
1796                        "additionalProperties": { "type": ["string", "null"] },
1797                        "default": {},
1798                        "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
1799                        "tags": ["setup"],
1800                        "type": "object"
1801                      },
1802                      "envFile": {
1803                        "default": "${ZED_WORKTREE_ROOT}/.env",
1804                        "description": "Absolute path to a file containing environment variable definitions.",
1805                        "type": "string"
1806                      },
1807                      "localRoot": {
1808                        "default": null,
1809                        "description": "Path to the local directory containing the program.",
1810                        "type": ["string", "null"]
1811                      },
1812                      "nodeVersionHint": {
1813                        "default": 12,
1814                        "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
1815                        "minimum": 8,
1816                        "type": "number"
1817                      },
1818                      "outFiles": {
1819                        "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
1820                        "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
1821                        "items": { "type": "string" },
1822                        "tags": ["setup"],
1823                        "type": ["array"]
1824                      },
1825                      "outputCapture": {
1826                        "default": "console",
1827                        "enum": ["console", "std"],
1828                        "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
1829                      },
1830                      "pauseForSourceMap": {
1831                        "default": false,
1832                        "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
1833                        "type": "boolean"
1834                      },
1835                      "remoteRoot": {
1836                        "default": null,
1837                        "description": "Absolute path to the remote directory containing the program.",
1838                        "type": ["string", "null"]
1839                      },
1840                      "resolveSourceMapLocations": {
1841                        "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
1842                        "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
1843                        "items": { "type": "string" },
1844                        "type": ["array", "null"]
1845                      },
1846                      "runtimeSourcemapPausePatterns": {
1847                        "default": [],
1848                        "items": { "type": "string" },
1849                        "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
1850                        "type": "array"
1851                      },
1852                      "showAsyncStacks": {
1853                        "default": true,
1854                        "description": "Show the async calls that led to the current call stack.",
1855                        "oneOf": [
1856                          { "type": "boolean" },
1857                          {
1858                            "properties": { "onAttach": { "default": 32, "type": "number" } },
1859                            "required": ["onAttach"],
1860                            "type": "object"
1861                          },
1862                          {
1863                            "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
1864                            "required": ["onceBreakpointResolved"],
1865                            "type": "object"
1866                          }
1867                        ]
1868                      },
1869                      "skipFiles": {
1870                        "default": ["${/**"],
1871                        "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
1872                        "type": "array"
1873                      },
1874                      "smartStep": {
1875                        "default": true,
1876                        "description": "Automatically step through generated code that cannot be mapped back to the original source.",
1877                        "type": "boolean"
1878                      },
1879                      "sourceMapPathOverrides": {
1880                        "default": {
1881                          "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
1882                          "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
1883                          "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
1884                        },
1885                        "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
1886                        "type": "object"
1887                      },
1888                      "sourceMapRenames": {
1889                        "default": true,
1890                        "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
1891                        "type": "boolean"
1892                      },
1893                      "sourceMaps": {
1894                        "default": true,
1895                        "description": "Use JavaScript source maps (if they exist).",
1896                        "type": "boolean"
1897                      },
1898                      "timeout": {
1899                        "default": 10000,
1900                        "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
1901                        "type": "number"
1902                      },
1903                      "timeouts": {
1904                        "additionalProperties": false,
1905                        "default": {},
1906                        "description": "Timeouts for several debugger operations.",
1907                        "markdownDescription": "Timeouts for several debugger operations.",
1908                        "properties": {
1909                          "hoverEvaluation": {
1910                            "default": 500,
1911                            "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
1912                            "type": "number"
1913                          },
1914                          "sourceMapCumulativePause": {
1915                            "default": 1000,
1916                            "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
1917                            "type": "number"
1918                          },
1919                          "sourceMapMinPause": {
1920                            "default": 1000,
1921                            "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
1922                            "type": "number"
1923                          }
1924                        },
1925                        "type": "object"
1926                      },
1927                      "trace": {
1928                        "default": true,
1929                        "description": "Configures what diagnostic output is produced.",
1930                        "oneOf": [
1931                          {
1932                            "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
1933                            "type": "boolean"
1934                          },
1935                          {
1936                            "additionalProperties": false,
1937                            "properties": {
1938                              "logFile": {
1939                                "description": "Configures where on disk logs are written.",
1940                                "type": ["string", "null"]
1941                              },
1942                              "stdio": {
1943                                "description": "Whether to return trace data from the launched application or browser.",
1944                                "type": "boolean"
1945                              }
1946                            },
1947                            "type": "object"
1948                          }
1949                        ]
1950                      }
1951                    },
1952                    "type": "object"
1953                  }
1954                ]
1955              },
1956              "showAsyncStacks": {
1957                "default": true,
1958                "description": "Show the async calls that led to the current call stack.",
1959                "oneOf": [
1960                  { "type": "boolean" },
1961                  {
1962                    "properties": { "onAttach": { "default": 32, "type": "number" } },
1963                    "required": ["onAttach"],
1964                    "type": "object"
1965                  },
1966                  {
1967                    "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
1968                    "required": ["onceBreakpointResolved"],
1969                    "type": "object"
1970                  }
1971                ]
1972              },
1973              "skipFiles": {
1974                "default": ["${/**"],
1975                "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
1976                "type": "array"
1977              },
1978              "smartStep": {
1979                "default": true,
1980                "description": "Automatically step through generated code that cannot be mapped back to the original source.",
1981                "type": "boolean"
1982              },
1983              "sourceMapPathOverrides": {
1984                "default": {
1985                  "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
1986                  "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
1987                  "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
1988                },
1989                "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
1990                "type": "object"
1991              },
1992              "sourceMapRenames": {
1993                "default": true,
1994                "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
1995                "type": "boolean"
1996              },
1997              "sourceMaps": {
1998                "default": true,
1999                "description": "Use JavaScript source maps (if they exist).",
2000                "type": "boolean"
2001              },
2002              "targetSelection": {
2003                "default": "automatic",
2004                "enum": ["pick", "automatic"],
2005                "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
2006                "type": "string"
2007              },
2008              "timeout": {
2009                "default": 10000,
2010                "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
2011                "type": "number"
2012              },
2013              "timeouts": {
2014                "additionalProperties": false,
2015                "default": {},
2016                "description": "Timeouts for several debugger operations.",
2017                "markdownDescription": "Timeouts for several debugger operations.",
2018                "properties": {
2019                  "hoverEvaluation": {
2020                    "default": 500,
2021                    "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
2022                    "type": "number"
2023                  },
2024                  "sourceMapCumulativePause": {
2025                    "default": 1000,
2026                    "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
2027                    "type": "number"
2028                  },
2029                  "sourceMapMinPause": {
2030                    "default": 1000,
2031                    "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
2032                    "type": "number"
2033                  }
2034                },
2035                "type": "object"
2036              },
2037              "trace": {
2038                "default": true,
2039                "description": "Configures what diagnostic output is produced.",
2040                "oneOf": [
2041                  {
2042                    "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
2043                    "type": "boolean"
2044                  },
2045                  {
2046                    "additionalProperties": false,
2047                    "properties": {
2048                      "logFile": {
2049                        "description": "Configures where on disk logs are written.",
2050                        "type": ["string", "null"]
2051                      },
2052                      "stdio": {
2053                        "description": "Whether to return trace data from the launched application or browser.",
2054                        "type": "boolean"
2055                      }
2056                    },
2057                    "type": "object"
2058                  }
2059                ]
2060              },
2061              "url": {
2062                "default": "http://localhost:8080",
2063                "description": "Will search for a tab with this exact url and attach to it, if found",
2064                "tags": ["setup"],
2065                "type": "string"
2066              },
2067              "urlFilter": {
2068                "default": "",
2069                "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
2070                "type": "string"
2071              },
2072              "vueComponentPaths": {
2073                "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
2074                "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
2075                "type": "array"
2076              },
2077              "webRoot": {
2078                "default": "${ZED_WORKTREE_ROOT}",
2079                "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
2080                "tags": ["setup"],
2081                "type": "string"
2082              }
2083            },
2084            "type": "object"
2085          },
2086          "resolveSourceMapLocations": {
2087            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
2088            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
2089            "items": { "type": "string" },
2090            "type": ["array", "null"]
2091          },
2092          "runtimeExecutable": {
2093            "default": "node",
2094            "markdownDescription": "Absolute path to VS Code.",
2095            "type": ["string", "null"]
2096          },
2097          "runtimeSourcemapPausePatterns": {
2098            "default": [],
2099            "items": { "type": "string" },
2100            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
2101            "type": "array"
2102          },
2103          "showAsyncStacks": {
2104            "default": true,
2105            "description": "Show the async calls that led to the current call stack.",
2106            "oneOf": [
2107              { "type": "boolean" },
2108              {
2109                "properties": { "onAttach": { "default": 32, "type": "number" } },
2110                "required": ["onAttach"],
2111                "type": "object"
2112              },
2113              {
2114                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
2115                "required": ["onceBreakpointResolved"],
2116                "type": "object"
2117              }
2118            ]
2119          },
2120          "skipFiles": {
2121            "default": ["${/**"],
2122            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
2123            "type": "array"
2124          },
2125          "smartStep": {
2126            "default": true,
2127            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
2128            "type": "boolean"
2129          },
2130          "sourceMapPathOverrides": {
2131            "default": {
2132              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
2133              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
2134              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
2135            },
2136            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
2137            "type": "object"
2138          },
2139          "sourceMapRenames": {
2140            "default": true,
2141            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
2142            "type": "boolean"
2143          },
2144          "sourceMaps": {
2145            "default": true,
2146            "description": "Use JavaScript source maps (if they exist).",
2147            "type": "boolean"
2148          },
2149          "testConfiguration": {
2150            "default": "${ZED_WORKTREE_ROOT}/.vscode-test.js",
2151            "markdownDescription": "Path to a test configuration file for the [test CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
2152            "type": "string"
2153          },
2154          "testConfigurationLabel": {
2155            "default": "",
2156            "markdownDescription": "A single configuration to run from the file. If not specified, you may be asked to pick.",
2157            "type": "string"
2158          },
2159          "timeout": {
2160            "default": 10000,
2161            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
2162            "type": "number"
2163          },
2164          "timeouts": {
2165            "additionalProperties": false,
2166            "default": {},
2167            "description": "Timeouts for several debugger operations.",
2168            "markdownDescription": "Timeouts for several debugger operations.",
2169            "properties": {
2170              "hoverEvaluation": {
2171                "default": 500,
2172                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
2173                "type": "number"
2174              },
2175              "sourceMapCumulativePause": {
2176                "default": 1000,
2177                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
2178                "type": "number"
2179              },
2180              "sourceMapMinPause": {
2181                "default": 1000,
2182                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
2183                "type": "number"
2184              }
2185            },
2186            "type": "object"
2187          },
2188          "trace": {
2189            "default": true,
2190            "description": "Configures what diagnostic output is produced.",
2191            "oneOf": [
2192              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
2193              {
2194                "additionalProperties": false,
2195                "properties": {
2196                  "logFile": {
2197                    "description": "Configures where on disk logs are written.",
2198                    "type": ["string", "null"]
2199                  },
2200                  "stdio": {
2201                    "description": "Whether to return trace data from the launched application or browser.",
2202                    "type": "boolean"
2203                  }
2204                },
2205                "type": "object"
2206              }
2207            ]
2208          }
2209        },
2210        "required": []
2211      }
2212    },
2213    {
2214      "if": {
2215        "properties": { "type": { "const": "extensionHost" }, "request": { "const": "launch" } },
2216        "required": ["type", "request"]
2217      },
2218      "then": {
2219        "properties": {
2220          "args": {
2221            "default": ["--extensionDevelopmentPath=${ZED_WORKTREE_ROOT}"],
2222            "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
2223            "items": { "type": "string" },
2224            "tags": ["setup"],
2225            "type": "array"
2226          },
2227          "autoAttachChildProcesses": {
2228            "default": true,
2229            "description": "Attach debugger to new child processes automatically.",
2230            "type": "boolean"
2231          },
2232          "cascadeTerminateToConfigurations": {
2233            "default": [],
2234            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
2235            "items": { "type": "string", "uniqueItems": true },
2236            "type": "array"
2237          },
2238          "customDescriptionGenerator": {
2239            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
2240            "type": "string"
2241          },
2242          "customPropertiesGenerator": {
2243            "deprecated": true,
2244            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
2245            "type": "string"
2246          },
2247          "cwd": {
2248            "default": "${ZED_WORKTREE_ROOT}",
2249            "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
2250            "tags": ["setup"],
2251            "type": "string"
2252          },
2253          "debugWebWorkerHost": {
2254            "default": true,
2255            "markdownDescription": "Configures whether we should try to attach to the web worker extension host.",
2256            "type": ["boolean"]
2257          },
2258          "debugWebviews": {
2259            "default": true,
2260            "markdownDescription": "Configures whether we should try to attach to webviews in the launched VS Code instance. This will only work in desktop VS Code.",
2261            "type": ["boolean"]
2262          },
2263          "enableContentValidation": {
2264            "default": true,
2265            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
2266            "type": "boolean"
2267          },
2268          "enableDWARF": {
2269            "default": true,
2270            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
2271            "type": "boolean"
2272          },
2273          "env": {
2274            "additionalProperties": { "type": ["string", "null"] },
2275            "default": {},
2276            "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
2277            "tags": ["setup"],
2278            "type": "object"
2279          },
2280          "envFile": {
2281            "default": "${ZED_WORKTREE_ROOT}/.env",
2282            "description": "Absolute path to a file containing environment variable definitions.",
2283            "type": "string"
2284          },
2285          "localRoot": {
2286            "default": null,
2287            "description": "Path to the local directory containing the program.",
2288            "type": ["string", "null"]
2289          },
2290          "nodeVersionHint": {
2291            "default": 12,
2292            "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
2293            "minimum": 8,
2294            "type": "number"
2295          },
2296          "outFiles": {
2297            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
2298            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
2299            "items": { "type": "string" },
2300            "tags": ["setup"],
2301            "type": ["array"]
2302          },
2303          "outputCapture": {
2304            "default": "console",
2305            "enum": ["console", "std"],
2306            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
2307          },
2308          "pauseForSourceMap": {
2309            "default": false,
2310            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
2311            "type": "boolean"
2312          },
2313          "remoteRoot": {
2314            "default": null,
2315            "description": "Absolute path to the remote directory containing the program.",
2316            "type": ["string", "null"]
2317          },
2318          "rendererDebugOptions": {
2319            "default": { "webRoot": "${ZED_WORKTREE_ROOT}" },
2320            "markdownDescription": "Chrome launch options used when attaching to the renderer process, with `debugWebviews` or `debugWebWorkerHost`.",
2321            "properties": {
2322              "address": {
2323                "default": "localhost",
2324                "description": "IP address or hostname the debugged browser is listening on.",
2325                "type": "string"
2326              },
2327              "browserAttachLocation": {
2328                "default": null,
2329                "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
2330                "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
2331              },
2332              "cascadeTerminateToConfigurations": {
2333                "default": [],
2334                "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
2335                "items": { "type": "string", "uniqueItems": true },
2336                "type": "array"
2337              },
2338              "customDescriptionGenerator": {
2339                "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
2340                "type": "string"
2341              },
2342              "customPropertiesGenerator": {
2343                "deprecated": true,
2344                "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
2345                "type": "string"
2346              },
2347              "disableNetworkCache": {
2348                "default": true,
2349                "description": "Controls whether to skip the network cache for each request",
2350                "type": "boolean"
2351              },
2352              "enableContentValidation": {
2353                "default": true,
2354                "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
2355                "type": "boolean"
2356              },
2357              "enableDWARF": {
2358                "default": true,
2359                "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
2360                "type": "boolean"
2361              },
2362              "inspectUri": {
2363                "default": null,
2364                "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
2365                "type": ["string", "null"]
2366              },
2367              "outFiles": {
2368                "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
2369                "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
2370                "items": { "type": "string" },
2371                "tags": ["setup"],
2372                "type": ["array"]
2373              },
2374              "outputCapture": {
2375                "default": "console",
2376                "enum": ["console", "std"],
2377                "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
2378              },
2379              "pathMapping": {
2380                "default": {},
2381                "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
2382                "type": "object"
2383              },
2384              "pauseForSourceMap": {
2385                "default": false,
2386                "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
2387                "type": "boolean"
2388              },
2389              "perScriptSourcemaps": {
2390                "default": "auto",
2391                "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
2392                "enum": ["yes", "no", "auto"],
2393                "type": "string"
2394              },
2395              "port": {
2396                "default": 9229,
2397                "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
2398                "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
2399                "tags": ["setup"]
2400              },
2401              "resolveSourceMapLocations": {
2402                "default": null,
2403                "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
2404                "items": { "type": "string" },
2405                "type": ["array", "null"]
2406              },
2407              "restart": {
2408                "default": false,
2409                "markdownDescription": "Whether to reconnect if the browser connection is closed",
2410                "type": "boolean"
2411              },
2412              "server": {
2413                "oneOf": [
2414                  {
2415                    "additionalProperties": false,
2416                    "default": { "program": "node my-server.js" },
2417                    "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
2418                    "properties": {
2419                      "args": {
2420                        "default": [],
2421                        "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
2422                        "items": { "type": "string" },
2423                        "tags": ["setup"],
2424                        "type": ["array", "string"]
2425                      },
2426                      "attachSimplePort": {
2427                        "default": 9229,
2428                        "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
2429                        "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
2430                      },
2431                      "autoAttachChildProcesses": {
2432                        "default": true,
2433                        "description": "Attach debugger to new child processes automatically.",
2434                        "type": "boolean"
2435                      },
2436                      "cascadeTerminateToConfigurations": {
2437                        "default": [],
2438                        "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
2439                        "items": { "type": "string", "uniqueItems": true },
2440                        "type": "array"
2441                      },
2442                      "console": {
2443                        "default": "internalConsole",
2444                        "description": "Where to launch the debug target.",
2445                        "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
2446                        "enumDescriptions": [
2447                          "VS Code Debug Console (which doesn't support to read input from a program)",
2448                          "VS Code's integrated terminal",
2449                          "External terminal that can be configured via user settings"
2450                        ],
2451                        "type": "string"
2452                      },
2453                      "customDescriptionGenerator": {
2454                        "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
2455                        "type": "string"
2456                      },
2457                      "customPropertiesGenerator": {
2458                        "deprecated": true,
2459                        "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
2460                        "type": "string"
2461                      },
2462                      "cwd": {
2463                        "default": "${ZED_WORKTREE_ROOT}",
2464                        "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
2465                        "tags": ["setup"],
2466                        "type": "string"
2467                      },
2468                      "enableContentValidation": {
2469                        "default": true,
2470                        "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
2471                        "type": "boolean"
2472                      },
2473                      "enableDWARF": {
2474                        "default": true,
2475                        "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
2476                        "type": "boolean"
2477                      },
2478                      "env": {
2479                        "additionalProperties": { "type": ["string", "null"] },
2480                        "default": {},
2481                        "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
2482                        "tags": ["setup"],
2483                        "type": "object"
2484                      },
2485                      "envFile": {
2486                        "default": "${ZED_WORKTREE_ROOT}/.env",
2487                        "description": "Absolute path to a file containing environment variable definitions.",
2488                        "type": "string"
2489                      },
2490                      "experimentalNetworking": {
2491                        "default": "auto",
2492                        "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
2493                        "enum": ["auto", "on", "off"],
2494                        "type": "string"
2495                      },
2496                      "killBehavior": {
2497                        "default": "forceful",
2498                        "enum": ["forceful", "polite", "none"],
2499                        "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
2500                        "type": "string"
2501                      },
2502                      "localRoot": {
2503                        "default": null,
2504                        "description": "Path to the local directory containing the program.",
2505                        "type": ["string", "null"]
2506                      },
2507                      "nodeVersionHint": {
2508                        "default": 12,
2509                        "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
2510                        "minimum": 8,
2511                        "type": "number"
2512                      },
2513                      "outFiles": {
2514                        "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
2515                        "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
2516                        "items": { "type": "string" },
2517                        "tags": ["setup"],
2518                        "type": ["array"]
2519                      },
2520                      "outputCapture": {
2521                        "default": "console",
2522                        "enum": ["console", "std"],
2523                        "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
2524                      },
2525                      "pauseForSourceMap": {
2526                        "default": false,
2527                        "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
2528                        "type": "boolean"
2529                      },
2530                      "profileStartup": {
2531                        "default": true,
2532                        "description": "If true, will start profiling as soon as the process launches",
2533                        "type": "boolean"
2534                      },
2535                      "program": {
2536                        "default": "",
2537                        "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
2538                        "tags": ["setup"],
2539                        "type": "string"
2540                      },
2541                      "remoteRoot": {
2542                        "default": null,
2543                        "description": "Absolute path to the remote directory containing the program.",
2544                        "type": ["string", "null"]
2545                      },
2546                      "resolveSourceMapLocations": {
2547                        "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
2548                        "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
2549                        "items": { "type": "string" },
2550                        "type": ["array", "null"]
2551                      },
2552                      "restart": {
2553                        "default": true,
2554                        "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
2555                        "oneOf": [
2556                          { "type": "boolean" },
2557                          {
2558                            "properties": {
2559                              "delay": { "default": 1000, "minimum": 0, "type": "number" },
2560                              "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
2561                            },
2562                            "type": "object"
2563                          }
2564                        ]
2565                      },
2566                      "runtimeArgs": {
2567                        "default": [],
2568                        "description": "Optional arguments passed to the runtime executable.",
2569                        "items": { "type": "string" },
2570                        "tags": ["setup"],
2571                        "type": "array"
2572                      },
2573                      "runtimeExecutable": {
2574                        "default": "node",
2575                        "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
2576                        "type": ["string", "null"]
2577                      },
2578                      "runtimeSourcemapPausePatterns": {
2579                        "default": [],
2580                        "items": { "type": "string" },
2581                        "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
2582                        "type": "array"
2583                      },
2584                      "runtimeVersion": {
2585                        "default": "default",
2586                        "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
2587                        "type": "string"
2588                      },
2589                      "showAsyncStacks": {
2590                        "default": true,
2591                        "description": "Show the async calls that led to the current call stack.",
2592                        "oneOf": [
2593                          { "type": "boolean" },
2594                          {
2595                            "properties": { "onAttach": { "default": 32, "type": "number" } },
2596                            "required": ["onAttach"],
2597                            "type": "object"
2598                          },
2599                          {
2600                            "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
2601                            "required": ["onceBreakpointResolved"],
2602                            "type": "object"
2603                          }
2604                        ]
2605                      },
2606                      "skipFiles": {
2607                        "default": ["${/**"],
2608                        "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
2609                        "type": "array"
2610                      },
2611                      "smartStep": {
2612                        "default": true,
2613                        "description": "Automatically step through generated code that cannot be mapped back to the original source.",
2614                        "type": "boolean"
2615                      },
2616                      "sourceMapPathOverrides": {
2617                        "default": {
2618                          "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
2619                          "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
2620                          "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
2621                        },
2622                        "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
2623                        "type": "object"
2624                      },
2625                      "sourceMapRenames": {
2626                        "default": true,
2627                        "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
2628                        "type": "boolean"
2629                      },
2630                      "sourceMaps": {
2631                        "default": true,
2632                        "description": "Use JavaScript source maps (if they exist).",
2633                        "type": "boolean"
2634                      },
2635                      "stopOnEntry": {
2636                        "default": true,
2637                        "description": "Automatically stop program after launch.",
2638                        "type": ["boolean", "string"]
2639                      },
2640                      "timeout": {
2641                        "default": 10000,
2642                        "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
2643                        "type": "number"
2644                      },
2645                      "timeouts": {
2646                        "additionalProperties": false,
2647                        "default": {},
2648                        "description": "Timeouts for several debugger operations.",
2649                        "markdownDescription": "Timeouts for several debugger operations.",
2650                        "properties": {
2651                          "hoverEvaluation": {
2652                            "default": 500,
2653                            "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
2654                            "type": "number"
2655                          },
2656                          "sourceMapCumulativePause": {
2657                            "default": 1000,
2658                            "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
2659                            "type": "number"
2660                          },
2661                          "sourceMapMinPause": {
2662                            "default": 1000,
2663                            "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
2664                            "type": "number"
2665                          }
2666                        },
2667                        "type": "object"
2668                      },
2669                      "trace": {
2670                        "default": true,
2671                        "description": "Configures what diagnostic output is produced.",
2672                        "oneOf": [
2673                          {
2674                            "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
2675                            "type": "boolean"
2676                          },
2677                          {
2678                            "additionalProperties": false,
2679                            "properties": {
2680                              "logFile": {
2681                                "description": "Configures where on disk logs are written.",
2682                                "type": ["string", "null"]
2683                              },
2684                              "stdio": {
2685                                "description": "Whether to return trace data from the launched application or browser.",
2686                                "type": "boolean"
2687                              }
2688                            },
2689                            "type": "object"
2690                          }
2691                        ]
2692                      }
2693                    },
2694                    "type": "object"
2695                  },
2696                  {
2697                    "additionalProperties": false,
2698                    "default": { "program": "npm start" },
2699                    "description": "JavaScript Debug Terminal",
2700                    "properties": {
2701                      "autoAttachChildProcesses": {
2702                        "default": true,
2703                        "description": "Attach debugger to new child processes automatically.",
2704                        "type": "boolean"
2705                      },
2706                      "cascadeTerminateToConfigurations": {
2707                        "default": [],
2708                        "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
2709                        "items": { "type": "string", "uniqueItems": true },
2710                        "type": "array"
2711                      },
2712                      "command": {
2713                        "default": "npm start",
2714                        "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
2715                        "tags": ["setup"],
2716                        "type": ["string", "null"]
2717                      },
2718                      "customDescriptionGenerator": {
2719                        "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
2720                        "type": "string"
2721                      },
2722                      "customPropertiesGenerator": {
2723                        "deprecated": true,
2724                        "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
2725                        "type": "string"
2726                      },
2727                      "cwd": {
2728                        "default": "${ZED_WORKTREE_ROOT}",
2729                        "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
2730                        "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
2731                        "tags": ["setup"],
2732                        "type": "string"
2733                      },
2734                      "enableContentValidation": {
2735                        "default": true,
2736                        "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
2737                        "type": "boolean"
2738                      },
2739                      "enableDWARF": {
2740                        "default": true,
2741                        "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
2742                        "type": "boolean"
2743                      },
2744                      "env": {
2745                        "additionalProperties": { "type": ["string", "null"] },
2746                        "default": {},
2747                        "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
2748                        "tags": ["setup"],
2749                        "type": "object"
2750                      },
2751                      "envFile": {
2752                        "default": "${ZED_WORKTREE_ROOT}/.env",
2753                        "description": "Absolute path to a file containing environment variable definitions.",
2754                        "type": "string"
2755                      },
2756                      "localRoot": {
2757                        "default": null,
2758                        "description": "Path to the local directory containing the program.",
2759                        "type": ["string", "null"]
2760                      },
2761                      "nodeVersionHint": {
2762                        "default": 12,
2763                        "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
2764                        "minimum": 8,
2765                        "type": "number"
2766                      },
2767                      "outFiles": {
2768                        "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
2769                        "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
2770                        "items": { "type": "string" },
2771                        "tags": ["setup"],
2772                        "type": ["array"]
2773                      },
2774                      "outputCapture": {
2775                        "default": "console",
2776                        "enum": ["console", "std"],
2777                        "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
2778                      },
2779                      "pauseForSourceMap": {
2780                        "default": false,
2781                        "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
2782                        "type": "boolean"
2783                      },
2784                      "remoteRoot": {
2785                        "default": null,
2786                        "description": "Absolute path to the remote directory containing the program.",
2787                        "type": ["string", "null"]
2788                      },
2789                      "resolveSourceMapLocations": {
2790                        "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
2791                        "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
2792                        "items": { "type": "string" },
2793                        "type": ["array", "null"]
2794                      },
2795                      "runtimeSourcemapPausePatterns": {
2796                        "default": [],
2797                        "items": { "type": "string" },
2798                        "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
2799                        "type": "array"
2800                      },
2801                      "showAsyncStacks": {
2802                        "default": true,
2803                        "description": "Show the async calls that led to the current call stack.",
2804                        "oneOf": [
2805                          { "type": "boolean" },
2806                          {
2807                            "properties": { "onAttach": { "default": 32, "type": "number" } },
2808                            "required": ["onAttach"],
2809                            "type": "object"
2810                          },
2811                          {
2812                            "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
2813                            "required": ["onceBreakpointResolved"],
2814                            "type": "object"
2815                          }
2816                        ]
2817                      },
2818                      "skipFiles": {
2819                        "default": ["${/**"],
2820                        "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
2821                        "type": "array"
2822                      },
2823                      "smartStep": {
2824                        "default": true,
2825                        "description": "Automatically step through generated code that cannot be mapped back to the original source.",
2826                        "type": "boolean"
2827                      },
2828                      "sourceMapPathOverrides": {
2829                        "default": {
2830                          "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
2831                          "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
2832                          "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
2833                        },
2834                        "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
2835                        "type": "object"
2836                      },
2837                      "sourceMapRenames": {
2838                        "default": true,
2839                        "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
2840                        "type": "boolean"
2841                      },
2842                      "sourceMaps": {
2843                        "default": true,
2844                        "description": "Use JavaScript source maps (if they exist).",
2845                        "type": "boolean"
2846                      },
2847                      "timeout": {
2848                        "default": 10000,
2849                        "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
2850                        "type": "number"
2851                      },
2852                      "timeouts": {
2853                        "additionalProperties": false,
2854                        "default": {},
2855                        "description": "Timeouts for several debugger operations.",
2856                        "markdownDescription": "Timeouts for several debugger operations.",
2857                        "properties": {
2858                          "hoverEvaluation": {
2859                            "default": 500,
2860                            "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
2861                            "type": "number"
2862                          },
2863                          "sourceMapCumulativePause": {
2864                            "default": 1000,
2865                            "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
2866                            "type": "number"
2867                          },
2868                          "sourceMapMinPause": {
2869                            "default": 1000,
2870                            "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
2871                            "type": "number"
2872                          }
2873                        },
2874                        "type": "object"
2875                      },
2876                      "trace": {
2877                        "default": true,
2878                        "description": "Configures what diagnostic output is produced.",
2879                        "oneOf": [
2880                          {
2881                            "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
2882                            "type": "boolean"
2883                          },
2884                          {
2885                            "additionalProperties": false,
2886                            "properties": {
2887                              "logFile": {
2888                                "description": "Configures where on disk logs are written.",
2889                                "type": ["string", "null"]
2890                              },
2891                              "stdio": {
2892                                "description": "Whether to return trace data from the launched application or browser.",
2893                                "type": "boolean"
2894                              }
2895                            },
2896                            "type": "object"
2897                          }
2898                        ]
2899                      }
2900                    },
2901                    "type": "object"
2902                  }
2903                ]
2904              },
2905              "showAsyncStacks": {
2906                "default": true,
2907                "description": "Show the async calls that led to the current call stack.",
2908                "oneOf": [
2909                  { "type": "boolean" },
2910                  {
2911                    "properties": { "onAttach": { "default": 32, "type": "number" } },
2912                    "required": ["onAttach"],
2913                    "type": "object"
2914                  },
2915                  {
2916                    "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
2917                    "required": ["onceBreakpointResolved"],
2918                    "type": "object"
2919                  }
2920                ]
2921              },
2922              "skipFiles": {
2923                "default": ["${/**"],
2924                "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
2925                "type": "array"
2926              },
2927              "smartStep": {
2928                "default": true,
2929                "description": "Automatically step through generated code that cannot be mapped back to the original source.",
2930                "type": "boolean"
2931              },
2932              "sourceMapPathOverrides": {
2933                "default": {
2934                  "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
2935                  "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
2936                  "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
2937                },
2938                "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
2939                "type": "object"
2940              },
2941              "sourceMapRenames": {
2942                "default": true,
2943                "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
2944                "type": "boolean"
2945              },
2946              "sourceMaps": {
2947                "default": true,
2948                "description": "Use JavaScript source maps (if they exist).",
2949                "type": "boolean"
2950              },
2951              "targetSelection": {
2952                "default": "automatic",
2953                "enum": ["pick", "automatic"],
2954                "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
2955                "type": "string"
2956              },
2957              "timeout": {
2958                "default": 10000,
2959                "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
2960                "type": "number"
2961              },
2962              "timeouts": {
2963                "additionalProperties": false,
2964                "default": {},
2965                "description": "Timeouts for several debugger operations.",
2966                "markdownDescription": "Timeouts for several debugger operations.",
2967                "properties": {
2968                  "hoverEvaluation": {
2969                    "default": 500,
2970                    "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
2971                    "type": "number"
2972                  },
2973                  "sourceMapCumulativePause": {
2974                    "default": 1000,
2975                    "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
2976                    "type": "number"
2977                  },
2978                  "sourceMapMinPause": {
2979                    "default": 1000,
2980                    "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
2981                    "type": "number"
2982                  }
2983                },
2984                "type": "object"
2985              },
2986              "trace": {
2987                "default": true,
2988                "description": "Configures what diagnostic output is produced.",
2989                "oneOf": [
2990                  {
2991                    "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
2992                    "type": "boolean"
2993                  },
2994                  {
2995                    "additionalProperties": false,
2996                    "properties": {
2997                      "logFile": {
2998                        "description": "Configures where on disk logs are written.",
2999                        "type": ["string", "null"]
3000                      },
3001                      "stdio": {
3002                        "description": "Whether to return trace data from the launched application or browser.",
3003                        "type": "boolean"
3004                      }
3005                    },
3006                    "type": "object"
3007                  }
3008                ]
3009              },
3010              "url": {
3011                "default": "http://localhost:8080",
3012                "description": "Will search for a tab with this exact url and attach to it, if found",
3013                "tags": ["setup"],
3014                "type": "string"
3015              },
3016              "urlFilter": {
3017                "default": "",
3018                "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
3019                "type": "string"
3020              },
3021              "vueComponentPaths": {
3022                "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
3023                "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
3024                "type": "array"
3025              },
3026              "webRoot": {
3027                "default": "${ZED_WORKTREE_ROOT}",
3028                "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
3029                "tags": ["setup"],
3030                "type": "string"
3031              }
3032            },
3033            "type": "object"
3034          },
3035          "resolveSourceMapLocations": {
3036            "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
3037            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
3038            "items": { "type": "string" },
3039            "type": ["array", "null"]
3040          },
3041          "runtimeExecutable": {
3042            "default": "node",
3043            "markdownDescription": "Absolute path to VS Code.",
3044            "type": ["string", "null"]
3045          },
3046          "runtimeSourcemapPausePatterns": {
3047            "default": [],
3048            "items": { "type": "string" },
3049            "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
3050            "type": "array"
3051          },
3052          "showAsyncStacks": {
3053            "default": true,
3054            "description": "Show the async calls that led to the current call stack.",
3055            "oneOf": [
3056              { "type": "boolean" },
3057              {
3058                "properties": { "onAttach": { "default": 32, "type": "number" } },
3059                "required": ["onAttach"],
3060                "type": "object"
3061              },
3062              {
3063                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
3064                "required": ["onceBreakpointResolved"],
3065                "type": "object"
3066              }
3067            ]
3068          },
3069          "skipFiles": {
3070            "default": ["${/**"],
3071            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
3072            "type": "array"
3073          },
3074          "smartStep": {
3075            "default": true,
3076            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
3077            "type": "boolean"
3078          },
3079          "sourceMapPathOverrides": {
3080            "default": {
3081              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
3082              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
3083              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
3084            },
3085            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
3086            "type": "object"
3087          },
3088          "sourceMapRenames": {
3089            "default": true,
3090            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
3091            "type": "boolean"
3092          },
3093          "sourceMaps": {
3094            "default": true,
3095            "description": "Use JavaScript source maps (if they exist).",
3096            "type": "boolean"
3097          },
3098          "testConfiguration": {
3099            "default": "${ZED_WORKTREE_ROOT}/.vscode-test.js",
3100            "markdownDescription": "Path to a test configuration file for the [test CLI](https://code.visualstudio.com/api/working-with-extensions/testing-extension#quick-setup-the-test-cli).",
3101            "type": "string"
3102          },
3103          "testConfigurationLabel": {
3104            "default": "",
3105            "markdownDescription": "A single configuration to run from the file. If not specified, you may be asked to pick.",
3106            "type": "string"
3107          },
3108          "timeout": {
3109            "default": 10000,
3110            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
3111            "type": "number"
3112          },
3113          "timeouts": {
3114            "additionalProperties": false,
3115            "default": {},
3116            "description": "Timeouts for several debugger operations.",
3117            "markdownDescription": "Timeouts for several debugger operations.",
3118            "properties": {
3119              "hoverEvaluation": {
3120                "default": 500,
3121                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
3122                "type": "number"
3123              },
3124              "sourceMapCumulativePause": {
3125                "default": 1000,
3126                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
3127                "type": "number"
3128              },
3129              "sourceMapMinPause": {
3130                "default": 1000,
3131                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
3132                "type": "number"
3133              }
3134            },
3135            "type": "object"
3136          },
3137          "trace": {
3138            "default": true,
3139            "description": "Configures what diagnostic output is produced.",
3140            "oneOf": [
3141              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
3142              {
3143                "additionalProperties": false,
3144                "properties": {
3145                  "logFile": {
3146                    "description": "Configures where on disk logs are written.",
3147                    "type": ["string", "null"]
3148                  },
3149                  "stdio": {
3150                    "description": "Whether to return trace data from the launched application or browser.",
3151                    "type": "boolean"
3152                  }
3153                },
3154                "type": "object"
3155              }
3156            ]
3157          }
3158        },
3159        "required": []
3160      }
3161    },
3162    {
3163      "if": {
3164        "properties": { "type": { "const": "pwa-chrome" }, "request": { "const": "launch" } },
3165        "required": ["type", "request"]
3166      },
3167      "then": {
3168        "properties": {
3169          "browserLaunchLocation": {
3170            "default": null,
3171            "description": "Forces the browser to be launched in one location. In a remote workspace (through ssh or WSL, for example) this can be used to open the browser on the remote machine rather than locally.",
3172            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
3173          },
3174          "cascadeTerminateToConfigurations": {
3175            "default": [],
3176            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
3177            "items": { "type": "string", "uniqueItems": true },
3178            "type": "array"
3179          },
3180          "cleanUp": {
3181            "default": "wholeBrowser",
3182            "description": "What clean-up to do after the debugging session finishes. Close only the tab being debug, vs. close the whole browser.",
3183            "enum": ["wholeBrowser", "onlyTab"],
3184            "type": "string"
3185          },
3186          "customDescriptionGenerator": {
3187            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
3188            "type": "string"
3189          },
3190          "customPropertiesGenerator": {
3191            "deprecated": true,
3192            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
3193            "type": "string"
3194          },
3195          "cwd": {
3196            "default": null,
3197            "description": "Optional working directory for the runtime executable.",
3198            "type": "string"
3199          },
3200          "disableNetworkCache": {
3201            "default": true,
3202            "description": "Controls whether to skip the network cache for each request",
3203            "type": "boolean"
3204          },
3205          "enableContentValidation": {
3206            "default": true,
3207            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
3208            "type": "boolean"
3209          },
3210          "enableDWARF": {
3211            "default": true,
3212            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
3213            "type": "boolean"
3214          },
3215          "env": {
3216            "default": {},
3217            "description": "Optional dictionary of environment key/value pairs for the browser.",
3218            "type": "object"
3219          },
3220          "file": {
3221            "default": "${ZED_WORKTREE_ROOT}/index.html",
3222            "description": "A local html file to open in the browser",
3223            "tags": ["setup"],
3224            "type": "string"
3225          },
3226          "includeDefaultArgs": {
3227            "default": true,
3228            "description": "Whether default browser launch arguments (to disable features that may make debugging harder) will be included in the launch.",
3229            "type": "boolean"
3230          },
3231          "includeLaunchArgs": {
3232            "default": true,
3233            "description": "Advanced: whether any default launch/debugging arguments are set on the browser. The debugger will assume the browser will use pipe debugging such as that which is provided with `--remote-debugging-pipe`.",
3234            "type": "boolean"
3235          },
3236          "inspectUri": {
3237            "default": null,
3238            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
3239            "type": ["string", "null"]
3240          },
3241          "killBehavior": {
3242            "default": "forceful",
3243            "enum": ["forceful", "polite", "none"],
3244            "markdownDescription": "Configures how browser processes are killed when stopping the session with `cleanUp: wholeBrowser`. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
3245            "type": "string"
3246          },
3247          "outFiles": {
3248            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
3249            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
3250            "items": { "type": "string" },
3251            "tags": ["setup"],
3252            "type": ["array"]
3253          },
3254          "outputCapture": {
3255            "default": "console",
3256            "enum": ["console", "std"],
3257            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
3258          },
3259          "pathMapping": {
3260            "default": {},
3261            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
3262            "type": "object"
3263          },
3264          "pauseForSourceMap": {
3265            "default": false,
3266            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
3267            "type": "boolean"
3268          },
3269          "perScriptSourcemaps": {
3270            "default": "auto",
3271            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
3272            "enum": ["yes", "no", "auto"],
3273            "type": "string"
3274          },
3275          "port": {
3276            "default": 0,
3277            "description": "Port for the browser to listen on. Defaults to \"0\", which will cause the browser to be debugged via pipes, which is generally more secure and should be chosen unless you need to attach to the browser from another tool.",
3278            "type": "number"
3279          },
3280          "profileStartup": {
3281            "default": true,
3282            "description": "If true, will start profiling soon as the process launches",
3283            "type": "boolean"
3284          },
3285          "resolveSourceMapLocations": {
3286            "default": null,
3287            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
3288            "items": { "type": "string" },
3289            "type": ["array", "null"]
3290          },
3291          "runtimeArgs": {
3292            "default": [],
3293            "description": "Optional arguments passed to the runtime executable.",
3294            "items": { "type": "string" },
3295            "type": "array"
3296          },
3297          "runtimeExecutable": {
3298            "default": "stable",
3299            "description": "Either 'canary', 'stable', 'custom' or path to the browser executable. Custom means a custom wrapper, custom build or CHROME_PATH environment variable.",
3300            "type": ["string", "null"]
3301          },
3302          "server": {
3303            "oneOf": [
3304              {
3305                "additionalProperties": false,
3306                "default": { "program": "node my-server.js" },
3307                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
3308                "properties": {
3309                  "args": {
3310                    "default": [],
3311                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
3312                    "items": { "type": "string" },
3313                    "tags": ["setup"],
3314                    "type": ["array", "string"]
3315                  },
3316                  "attachSimplePort": {
3317                    "default": 9229,
3318                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
3319                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
3320                  },
3321                  "autoAttachChildProcesses": {
3322                    "default": true,
3323                    "description": "Attach debugger to new child processes automatically.",
3324                    "type": "boolean"
3325                  },
3326                  "cascadeTerminateToConfigurations": {
3327                    "default": [],
3328                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
3329                    "items": { "type": "string", "uniqueItems": true },
3330                    "type": "array"
3331                  },
3332                  "console": {
3333                    "default": "internalConsole",
3334                    "description": "Where to launch the debug target.",
3335                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
3336                    "enumDescriptions": [
3337                      "VS Code Debug Console (which doesn't support to read input from a program)",
3338                      "VS Code's integrated terminal",
3339                      "External terminal that can be configured via user settings"
3340                    ],
3341                    "type": "string"
3342                  },
3343                  "customDescriptionGenerator": {
3344                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
3345                    "type": "string"
3346                  },
3347                  "customPropertiesGenerator": {
3348                    "deprecated": true,
3349                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
3350                    "type": "string"
3351                  },
3352                  "cwd": {
3353                    "default": "${ZED_WORKTREE_ROOT}",
3354                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
3355                    "tags": ["setup"],
3356                    "type": "string"
3357                  },
3358                  "enableContentValidation": {
3359                    "default": true,
3360                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
3361                    "type": "boolean"
3362                  },
3363                  "enableDWARF": {
3364                    "default": true,
3365                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
3366                    "type": "boolean"
3367                  },
3368                  "env": {
3369                    "additionalProperties": { "type": ["string", "null"] },
3370                    "default": {},
3371                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
3372                    "tags": ["setup"],
3373                    "type": "object"
3374                  },
3375                  "envFile": {
3376                    "default": "${ZED_WORKTREE_ROOT}/.env",
3377                    "description": "Absolute path to a file containing environment variable definitions.",
3378                    "type": "string"
3379                  },
3380                  "experimentalNetworking": {
3381                    "default": "auto",
3382                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
3383                    "enum": ["auto", "on", "off"],
3384                    "type": "string"
3385                  },
3386                  "killBehavior": {
3387                    "default": "forceful",
3388                    "enum": ["forceful", "polite", "none"],
3389                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
3390                    "type": "string"
3391                  },
3392                  "localRoot": {
3393                    "default": null,
3394                    "description": "Path to the local directory containing the program.",
3395                    "type": ["string", "null"]
3396                  },
3397                  "nodeVersionHint": {
3398                    "default": 12,
3399                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
3400                    "minimum": 8,
3401                    "type": "number"
3402                  },
3403                  "outFiles": {
3404                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
3405                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
3406                    "items": { "type": "string" },
3407                    "tags": ["setup"],
3408                    "type": ["array"]
3409                  },
3410                  "outputCapture": {
3411                    "default": "console",
3412                    "enum": ["console", "std"],
3413                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
3414                  },
3415                  "pauseForSourceMap": {
3416                    "default": false,
3417                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
3418                    "type": "boolean"
3419                  },
3420                  "profileStartup": {
3421                    "default": true,
3422                    "description": "If true, will start profiling as soon as the process launches",
3423                    "type": "boolean"
3424                  },
3425                  "program": {
3426                    "default": "",
3427                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
3428                    "tags": ["setup"],
3429                    "type": "string"
3430                  },
3431                  "remoteRoot": {
3432                    "default": null,
3433                    "description": "Absolute path to the remote directory containing the program.",
3434                    "type": ["string", "null"]
3435                  },
3436                  "resolveSourceMapLocations": {
3437                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
3438                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
3439                    "items": { "type": "string" },
3440                    "type": ["array", "null"]
3441                  },
3442                  "restart": {
3443                    "default": true,
3444                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
3445                    "oneOf": [
3446                      { "type": "boolean" },
3447                      {
3448                        "properties": {
3449                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
3450                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
3451                        },
3452                        "type": "object"
3453                      }
3454                    ]
3455                  },
3456                  "runtimeArgs": {
3457                    "default": [],
3458                    "description": "Optional arguments passed to the runtime executable.",
3459                    "items": { "type": "string" },
3460                    "tags": ["setup"],
3461                    "type": "array"
3462                  },
3463                  "runtimeExecutable": {
3464                    "default": "node",
3465                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
3466                    "type": ["string", "null"]
3467                  },
3468                  "runtimeSourcemapPausePatterns": {
3469                    "default": [],
3470                    "items": { "type": "string" },
3471                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
3472                    "type": "array"
3473                  },
3474                  "runtimeVersion": {
3475                    "default": "default",
3476                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
3477                    "type": "string"
3478                  },
3479                  "showAsyncStacks": {
3480                    "default": true,
3481                    "description": "Show the async calls that led to the current call stack.",
3482                    "oneOf": [
3483                      { "type": "boolean" },
3484                      {
3485                        "properties": { "onAttach": { "default": 32, "type": "number" } },
3486                        "required": ["onAttach"],
3487                        "type": "object"
3488                      },
3489                      {
3490                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
3491                        "required": ["onceBreakpointResolved"],
3492                        "type": "object"
3493                      }
3494                    ]
3495                  },
3496                  "skipFiles": {
3497                    "default": ["${/**"],
3498                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
3499                    "type": "array"
3500                  },
3501                  "smartStep": {
3502                    "default": true,
3503                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
3504                    "type": "boolean"
3505                  },
3506                  "sourceMapPathOverrides": {
3507                    "default": {
3508                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
3509                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
3510                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
3511                    },
3512                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
3513                    "type": "object"
3514                  },
3515                  "sourceMapRenames": {
3516                    "default": true,
3517                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
3518                    "type": "boolean"
3519                  },
3520                  "sourceMaps": {
3521                    "default": true,
3522                    "description": "Use JavaScript source maps (if they exist).",
3523                    "type": "boolean"
3524                  },
3525                  "stopOnEntry": {
3526                    "default": true,
3527                    "description": "Automatically stop program after launch.",
3528                    "type": ["boolean", "string"]
3529                  },
3530                  "timeout": {
3531                    "default": 10000,
3532                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
3533                    "type": "number"
3534                  },
3535                  "timeouts": {
3536                    "additionalProperties": false,
3537                    "default": {},
3538                    "description": "Timeouts for several debugger operations.",
3539                    "markdownDescription": "Timeouts for several debugger operations.",
3540                    "properties": {
3541                      "hoverEvaluation": {
3542                        "default": 500,
3543                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
3544                        "type": "number"
3545                      },
3546                      "sourceMapCumulativePause": {
3547                        "default": 1000,
3548                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
3549                        "type": "number"
3550                      },
3551                      "sourceMapMinPause": {
3552                        "default": 1000,
3553                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
3554                        "type": "number"
3555                      }
3556                    },
3557                    "type": "object"
3558                  },
3559                  "trace": {
3560                    "default": true,
3561                    "description": "Configures what diagnostic output is produced.",
3562                    "oneOf": [
3563                      {
3564                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
3565                        "type": "boolean"
3566                      },
3567                      {
3568                        "additionalProperties": false,
3569                        "properties": {
3570                          "logFile": {
3571                            "description": "Configures where on disk logs are written.",
3572                            "type": ["string", "null"]
3573                          },
3574                          "stdio": {
3575                            "description": "Whether to return trace data from the launched application or browser.",
3576                            "type": "boolean"
3577                          }
3578                        },
3579                        "type": "object"
3580                      }
3581                    ]
3582                  }
3583                },
3584                "type": "object"
3585              },
3586              {
3587                "additionalProperties": false,
3588                "default": { "program": "npm start" },
3589                "description": "JavaScript Debug Terminal",
3590                "properties": {
3591                  "autoAttachChildProcesses": {
3592                    "default": true,
3593                    "description": "Attach debugger to new child processes automatically.",
3594                    "type": "boolean"
3595                  },
3596                  "cascadeTerminateToConfigurations": {
3597                    "default": [],
3598                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
3599                    "items": { "type": "string", "uniqueItems": true },
3600                    "type": "array"
3601                  },
3602                  "command": {
3603                    "default": "npm start",
3604                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
3605                    "tags": ["setup"],
3606                    "type": ["string", "null"]
3607                  },
3608                  "customDescriptionGenerator": {
3609                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
3610                    "type": "string"
3611                  },
3612                  "customPropertiesGenerator": {
3613                    "deprecated": true,
3614                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
3615                    "type": "string"
3616                  },
3617                  "cwd": {
3618                    "default": "${ZED_WORKTREE_ROOT}",
3619                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
3620                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
3621                    "tags": ["setup"],
3622                    "type": "string"
3623                  },
3624                  "enableContentValidation": {
3625                    "default": true,
3626                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
3627                    "type": "boolean"
3628                  },
3629                  "enableDWARF": {
3630                    "default": true,
3631                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
3632                    "type": "boolean"
3633                  },
3634                  "env": {
3635                    "additionalProperties": { "type": ["string", "null"] },
3636                    "default": {},
3637                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
3638                    "tags": ["setup"],
3639                    "type": "object"
3640                  },
3641                  "envFile": {
3642                    "default": "${ZED_WORKTREE_ROOT}/.env",
3643                    "description": "Absolute path to a file containing environment variable definitions.",
3644                    "type": "string"
3645                  },
3646                  "localRoot": {
3647                    "default": null,
3648                    "description": "Path to the local directory containing the program.",
3649                    "type": ["string", "null"]
3650                  },
3651                  "nodeVersionHint": {
3652                    "default": 12,
3653                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
3654                    "minimum": 8,
3655                    "type": "number"
3656                  },
3657                  "outFiles": {
3658                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
3659                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
3660                    "items": { "type": "string" },
3661                    "tags": ["setup"],
3662                    "type": ["array"]
3663                  },
3664                  "outputCapture": {
3665                    "default": "console",
3666                    "enum": ["console", "std"],
3667                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
3668                  },
3669                  "pauseForSourceMap": {
3670                    "default": false,
3671                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
3672                    "type": "boolean"
3673                  },
3674                  "remoteRoot": {
3675                    "default": null,
3676                    "description": "Absolute path to the remote directory containing the program.",
3677                    "type": ["string", "null"]
3678                  },
3679                  "resolveSourceMapLocations": {
3680                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
3681                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
3682                    "items": { "type": "string" },
3683                    "type": ["array", "null"]
3684                  },
3685                  "runtimeSourcemapPausePatterns": {
3686                    "default": [],
3687                    "items": { "type": "string" },
3688                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
3689                    "type": "array"
3690                  },
3691                  "showAsyncStacks": {
3692                    "default": true,
3693                    "description": "Show the async calls that led to the current call stack.",
3694                    "oneOf": [
3695                      { "type": "boolean" },
3696                      {
3697                        "properties": { "onAttach": { "default": 32, "type": "number" } },
3698                        "required": ["onAttach"],
3699                        "type": "object"
3700                      },
3701                      {
3702                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
3703                        "required": ["onceBreakpointResolved"],
3704                        "type": "object"
3705                      }
3706                    ]
3707                  },
3708                  "skipFiles": {
3709                    "default": ["${/**"],
3710                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
3711                    "type": "array"
3712                  },
3713                  "smartStep": {
3714                    "default": true,
3715                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
3716                    "type": "boolean"
3717                  },
3718                  "sourceMapPathOverrides": {
3719                    "default": {
3720                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
3721                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
3722                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
3723                    },
3724                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
3725                    "type": "object"
3726                  },
3727                  "sourceMapRenames": {
3728                    "default": true,
3729                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
3730                    "type": "boolean"
3731                  },
3732                  "sourceMaps": {
3733                    "default": true,
3734                    "description": "Use JavaScript source maps (if they exist).",
3735                    "type": "boolean"
3736                  },
3737                  "timeout": {
3738                    "default": 10000,
3739                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
3740                    "type": "number"
3741                  },
3742                  "timeouts": {
3743                    "additionalProperties": false,
3744                    "default": {},
3745                    "description": "Timeouts for several debugger operations.",
3746                    "markdownDescription": "Timeouts for several debugger operations.",
3747                    "properties": {
3748                      "hoverEvaluation": {
3749                        "default": 500,
3750                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
3751                        "type": "number"
3752                      },
3753                      "sourceMapCumulativePause": {
3754                        "default": 1000,
3755                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
3756                        "type": "number"
3757                      },
3758                      "sourceMapMinPause": {
3759                        "default": 1000,
3760                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
3761                        "type": "number"
3762                      }
3763                    },
3764                    "type": "object"
3765                  },
3766                  "trace": {
3767                    "default": true,
3768                    "description": "Configures what diagnostic output is produced.",
3769                    "oneOf": [
3770                      {
3771                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
3772                        "type": "boolean"
3773                      },
3774                      {
3775                        "additionalProperties": false,
3776                        "properties": {
3777                          "logFile": {
3778                            "description": "Configures where on disk logs are written.",
3779                            "type": ["string", "null"]
3780                          },
3781                          "stdio": {
3782                            "description": "Whether to return trace data from the launched application or browser.",
3783                            "type": "boolean"
3784                          }
3785                        },
3786                        "type": "object"
3787                      }
3788                    ]
3789                  }
3790                },
3791                "type": "object"
3792              }
3793            ]
3794          },
3795          "showAsyncStacks": {
3796            "default": true,
3797            "description": "Show the async calls that led to the current call stack.",
3798            "oneOf": [
3799              { "type": "boolean" },
3800              {
3801                "properties": { "onAttach": { "default": 32, "type": "number" } },
3802                "required": ["onAttach"],
3803                "type": "object"
3804              },
3805              {
3806                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
3807                "required": ["onceBreakpointResolved"],
3808                "type": "object"
3809              }
3810            ]
3811          },
3812          "skipFiles": {
3813            "default": ["${/**"],
3814            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
3815            "type": "array"
3816          },
3817          "smartStep": {
3818            "default": true,
3819            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
3820            "type": "boolean"
3821          },
3822          "sourceMapPathOverrides": {
3823            "default": {
3824              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
3825              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
3826              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
3827            },
3828            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
3829            "type": "object"
3830          },
3831          "sourceMapRenames": {
3832            "default": true,
3833            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
3834            "type": "boolean"
3835          },
3836          "sourceMaps": {
3837            "default": true,
3838            "description": "Use JavaScript source maps (if they exist).",
3839            "type": "boolean"
3840          },
3841          "timeout": {
3842            "default": 10000,
3843            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
3844            "type": "number"
3845          },
3846          "timeouts": {
3847            "additionalProperties": false,
3848            "default": {},
3849            "description": "Timeouts for several debugger operations.",
3850            "markdownDescription": "Timeouts for several debugger operations.",
3851            "properties": {
3852              "hoverEvaluation": {
3853                "default": 500,
3854                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
3855                "type": "number"
3856              },
3857              "sourceMapCumulativePause": {
3858                "default": 1000,
3859                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
3860                "type": "number"
3861              },
3862              "sourceMapMinPause": {
3863                "default": 1000,
3864                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
3865                "type": "number"
3866              }
3867            },
3868            "type": "object"
3869          },
3870          "trace": {
3871            "default": true,
3872            "description": "Configures what diagnostic output is produced.",
3873            "oneOf": [
3874              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
3875              {
3876                "additionalProperties": false,
3877                "properties": {
3878                  "logFile": {
3879                    "description": "Configures where on disk logs are written.",
3880                    "type": ["string", "null"]
3881                  },
3882                  "stdio": {
3883                    "description": "Whether to return trace data from the launched application or browser.",
3884                    "type": "boolean"
3885                  }
3886                },
3887                "type": "object"
3888              }
3889            ]
3890          },
3891          "url": {
3892            "default": "http://localhost:8080",
3893            "description": "Will search for a tab with this exact url and attach to it, if found",
3894            "tags": ["setup"],
3895            "type": "string"
3896          },
3897          "urlFilter": {
3898            "default": "",
3899            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
3900            "type": "string"
3901          },
3902          "userDataDir": {
3903            "default": true,
3904            "description": "By default, the browser is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile. A new browser can't be launched if an instance is already running from `userDataDir`.",
3905            "type": ["string", "boolean"]
3906          },
3907          "vueComponentPaths": {
3908            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
3909            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
3910            "type": "array"
3911          },
3912          "webRoot": {
3913            "default": "${ZED_WORKTREE_ROOT}",
3914            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
3915            "tags": ["setup"],
3916            "type": "string"
3917          }
3918        }
3919      }
3920    },
3921    {
3922      "if": {
3923        "properties": { "type": { "const": "pwa-chrome" }, "request": { "const": "attach" } },
3924        "required": ["type", "request"]
3925      },
3926      "then": {
3927        "properties": {
3928          "address": {
3929            "default": "localhost",
3930            "description": "IP address or hostname the debugged browser is listening on.",
3931            "type": "string"
3932          },
3933          "browserAttachLocation": {
3934            "default": null,
3935            "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
3936            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
3937          },
3938          "cascadeTerminateToConfigurations": {
3939            "default": [],
3940            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
3941            "items": { "type": "string", "uniqueItems": true },
3942            "type": "array"
3943          },
3944          "customDescriptionGenerator": {
3945            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
3946            "type": "string"
3947          },
3948          "customPropertiesGenerator": {
3949            "deprecated": true,
3950            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
3951            "type": "string"
3952          },
3953          "disableNetworkCache": {
3954            "default": true,
3955            "description": "Controls whether to skip the network cache for each request",
3956            "type": "boolean"
3957          },
3958          "enableContentValidation": {
3959            "default": true,
3960            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
3961            "type": "boolean"
3962          },
3963          "enableDWARF": {
3964            "default": true,
3965            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
3966            "type": "boolean"
3967          },
3968          "inspectUri": {
3969            "default": null,
3970            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
3971            "type": ["string", "null"]
3972          },
3973          "outFiles": {
3974            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
3975            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
3976            "items": { "type": "string" },
3977            "tags": ["setup"],
3978            "type": ["array"]
3979          },
3980          "outputCapture": {
3981            "default": "console",
3982            "enum": ["console", "std"],
3983            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
3984          },
3985          "pathMapping": {
3986            "default": {},
3987            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
3988            "type": "object"
3989          },
3990          "pauseForSourceMap": {
3991            "default": false,
3992            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
3993            "type": "boolean"
3994          },
3995          "perScriptSourcemaps": {
3996            "default": "auto",
3997            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
3998            "enum": ["yes", "no", "auto"],
3999            "type": "string"
4000          },
4001          "port": {
4002            "default": 9229,
4003            "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
4004            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
4005            "tags": ["setup"]
4006          },
4007          "resolveSourceMapLocations": {
4008            "default": null,
4009            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
4010            "items": { "type": "string" },
4011            "type": ["array", "null"]
4012          },
4013          "restart": {
4014            "default": false,
4015            "markdownDescription": "Whether to reconnect if the browser connection is closed",
4016            "type": "boolean"
4017          },
4018          "server": {
4019            "oneOf": [
4020              {
4021                "additionalProperties": false,
4022                "default": { "program": "node my-server.js" },
4023                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
4024                "properties": {
4025                  "args": {
4026                    "default": [],
4027                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
4028                    "items": { "type": "string" },
4029                    "tags": ["setup"],
4030                    "type": ["array", "string"]
4031                  },
4032                  "attachSimplePort": {
4033                    "default": 9229,
4034                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
4035                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
4036                  },
4037                  "autoAttachChildProcesses": {
4038                    "default": true,
4039                    "description": "Attach debugger to new child processes automatically.",
4040                    "type": "boolean"
4041                  },
4042                  "cascadeTerminateToConfigurations": {
4043                    "default": [],
4044                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
4045                    "items": { "type": "string", "uniqueItems": true },
4046                    "type": "array"
4047                  },
4048                  "console": {
4049                    "default": "internalConsole",
4050                    "description": "Where to launch the debug target.",
4051                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
4052                    "enumDescriptions": [
4053                      "VS Code Debug Console (which doesn't support to read input from a program)",
4054                      "VS Code's integrated terminal",
4055                      "External terminal that can be configured via user settings"
4056                    ],
4057                    "type": "string"
4058                  },
4059                  "customDescriptionGenerator": {
4060                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
4061                    "type": "string"
4062                  },
4063                  "customPropertiesGenerator": {
4064                    "deprecated": true,
4065                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
4066                    "type": "string"
4067                  },
4068                  "cwd": {
4069                    "default": "${ZED_WORKTREE_ROOT}",
4070                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
4071                    "tags": ["setup"],
4072                    "type": "string"
4073                  },
4074                  "enableContentValidation": {
4075                    "default": true,
4076                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
4077                    "type": "boolean"
4078                  },
4079                  "enableDWARF": {
4080                    "default": true,
4081                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
4082                    "type": "boolean"
4083                  },
4084                  "env": {
4085                    "additionalProperties": { "type": ["string", "null"] },
4086                    "default": {},
4087                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
4088                    "tags": ["setup"],
4089                    "type": "object"
4090                  },
4091                  "envFile": {
4092                    "default": "${ZED_WORKTREE_ROOT}/.env",
4093                    "description": "Absolute path to a file containing environment variable definitions.",
4094                    "type": "string"
4095                  },
4096                  "experimentalNetworking": {
4097                    "default": "auto",
4098                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
4099                    "enum": ["auto", "on", "off"],
4100                    "type": "string"
4101                  },
4102                  "killBehavior": {
4103                    "default": "forceful",
4104                    "enum": ["forceful", "polite", "none"],
4105                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
4106                    "type": "string"
4107                  },
4108                  "localRoot": {
4109                    "default": null,
4110                    "description": "Path to the local directory containing the program.",
4111                    "type": ["string", "null"]
4112                  },
4113                  "nodeVersionHint": {
4114                    "default": 12,
4115                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
4116                    "minimum": 8,
4117                    "type": "number"
4118                  },
4119                  "outFiles": {
4120                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
4121                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
4122                    "items": { "type": "string" },
4123                    "tags": ["setup"],
4124                    "type": ["array"]
4125                  },
4126                  "outputCapture": {
4127                    "default": "console",
4128                    "enum": ["console", "std"],
4129                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
4130                  },
4131                  "pauseForSourceMap": {
4132                    "default": false,
4133                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
4134                    "type": "boolean"
4135                  },
4136                  "profileStartup": {
4137                    "default": true,
4138                    "description": "If true, will start profiling as soon as the process launches",
4139                    "type": "boolean"
4140                  },
4141                  "program": {
4142                    "default": "",
4143                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
4144                    "tags": ["setup"],
4145                    "type": "string"
4146                  },
4147                  "remoteRoot": {
4148                    "default": null,
4149                    "description": "Absolute path to the remote directory containing the program.",
4150                    "type": ["string", "null"]
4151                  },
4152                  "resolveSourceMapLocations": {
4153                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
4154                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
4155                    "items": { "type": "string" },
4156                    "type": ["array", "null"]
4157                  },
4158                  "restart": {
4159                    "default": true,
4160                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
4161                    "oneOf": [
4162                      { "type": "boolean" },
4163                      {
4164                        "properties": {
4165                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
4166                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
4167                        },
4168                        "type": "object"
4169                      }
4170                    ]
4171                  },
4172                  "runtimeArgs": {
4173                    "default": [],
4174                    "description": "Optional arguments passed to the runtime executable.",
4175                    "items": { "type": "string" },
4176                    "tags": ["setup"],
4177                    "type": "array"
4178                  },
4179                  "runtimeExecutable": {
4180                    "default": "node",
4181                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
4182                    "type": ["string", "null"]
4183                  },
4184                  "runtimeSourcemapPausePatterns": {
4185                    "default": [],
4186                    "items": { "type": "string" },
4187                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
4188                    "type": "array"
4189                  },
4190                  "runtimeVersion": {
4191                    "default": "default",
4192                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
4193                    "type": "string"
4194                  },
4195                  "showAsyncStacks": {
4196                    "default": true,
4197                    "description": "Show the async calls that led to the current call stack.",
4198                    "oneOf": [
4199                      { "type": "boolean" },
4200                      {
4201                        "properties": { "onAttach": { "default": 32, "type": "number" } },
4202                        "required": ["onAttach"],
4203                        "type": "object"
4204                      },
4205                      {
4206                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
4207                        "required": ["onceBreakpointResolved"],
4208                        "type": "object"
4209                      }
4210                    ]
4211                  },
4212                  "skipFiles": {
4213                    "default": ["${/**"],
4214                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
4215                    "type": "array"
4216                  },
4217                  "smartStep": {
4218                    "default": true,
4219                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
4220                    "type": "boolean"
4221                  },
4222                  "sourceMapPathOverrides": {
4223                    "default": {
4224                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
4225                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
4226                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
4227                    },
4228                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
4229                    "type": "object"
4230                  },
4231                  "sourceMapRenames": {
4232                    "default": true,
4233                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
4234                    "type": "boolean"
4235                  },
4236                  "sourceMaps": {
4237                    "default": true,
4238                    "description": "Use JavaScript source maps (if they exist).",
4239                    "type": "boolean"
4240                  },
4241                  "stopOnEntry": {
4242                    "default": true,
4243                    "description": "Automatically stop program after launch.",
4244                    "type": ["boolean", "string"]
4245                  },
4246                  "timeout": {
4247                    "default": 10000,
4248                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
4249                    "type": "number"
4250                  },
4251                  "timeouts": {
4252                    "additionalProperties": false,
4253                    "default": {},
4254                    "description": "Timeouts for several debugger operations.",
4255                    "markdownDescription": "Timeouts for several debugger operations.",
4256                    "properties": {
4257                      "hoverEvaluation": {
4258                        "default": 500,
4259                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
4260                        "type": "number"
4261                      },
4262                      "sourceMapCumulativePause": {
4263                        "default": 1000,
4264                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
4265                        "type": "number"
4266                      },
4267                      "sourceMapMinPause": {
4268                        "default": 1000,
4269                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
4270                        "type": "number"
4271                      }
4272                    },
4273                    "type": "object"
4274                  },
4275                  "trace": {
4276                    "default": true,
4277                    "description": "Configures what diagnostic output is produced.",
4278                    "oneOf": [
4279                      {
4280                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
4281                        "type": "boolean"
4282                      },
4283                      {
4284                        "additionalProperties": false,
4285                        "properties": {
4286                          "logFile": {
4287                            "description": "Configures where on disk logs are written.",
4288                            "type": ["string", "null"]
4289                          },
4290                          "stdio": {
4291                            "description": "Whether to return trace data from the launched application or browser.",
4292                            "type": "boolean"
4293                          }
4294                        },
4295                        "type": "object"
4296                      }
4297                    ]
4298                  }
4299                },
4300                "type": "object"
4301              },
4302              {
4303                "additionalProperties": false,
4304                "default": { "program": "npm start" },
4305                "description": "JavaScript Debug Terminal",
4306                "properties": {
4307                  "autoAttachChildProcesses": {
4308                    "default": true,
4309                    "description": "Attach debugger to new child processes automatically.",
4310                    "type": "boolean"
4311                  },
4312                  "cascadeTerminateToConfigurations": {
4313                    "default": [],
4314                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
4315                    "items": { "type": "string", "uniqueItems": true },
4316                    "type": "array"
4317                  },
4318                  "command": {
4319                    "default": "npm start",
4320                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
4321                    "tags": ["setup"],
4322                    "type": ["string", "null"]
4323                  },
4324                  "customDescriptionGenerator": {
4325                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
4326                    "type": "string"
4327                  },
4328                  "customPropertiesGenerator": {
4329                    "deprecated": true,
4330                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
4331                    "type": "string"
4332                  },
4333                  "cwd": {
4334                    "default": "${ZED_WORKTREE_ROOT}",
4335                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
4336                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
4337                    "tags": ["setup"],
4338                    "type": "string"
4339                  },
4340                  "enableContentValidation": {
4341                    "default": true,
4342                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
4343                    "type": "boolean"
4344                  },
4345                  "enableDWARF": {
4346                    "default": true,
4347                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
4348                    "type": "boolean"
4349                  },
4350                  "env": {
4351                    "additionalProperties": { "type": ["string", "null"] },
4352                    "default": {},
4353                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
4354                    "tags": ["setup"],
4355                    "type": "object"
4356                  },
4357                  "envFile": {
4358                    "default": "${ZED_WORKTREE_ROOT}/.env",
4359                    "description": "Absolute path to a file containing environment variable definitions.",
4360                    "type": "string"
4361                  },
4362                  "localRoot": {
4363                    "default": null,
4364                    "description": "Path to the local directory containing the program.",
4365                    "type": ["string", "null"]
4366                  },
4367                  "nodeVersionHint": {
4368                    "default": 12,
4369                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
4370                    "minimum": 8,
4371                    "type": "number"
4372                  },
4373                  "outFiles": {
4374                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
4375                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
4376                    "items": { "type": "string" },
4377                    "tags": ["setup"],
4378                    "type": ["array"]
4379                  },
4380                  "outputCapture": {
4381                    "default": "console",
4382                    "enum": ["console", "std"],
4383                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
4384                  },
4385                  "pauseForSourceMap": {
4386                    "default": false,
4387                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
4388                    "type": "boolean"
4389                  },
4390                  "remoteRoot": {
4391                    "default": null,
4392                    "description": "Absolute path to the remote directory containing the program.",
4393                    "type": ["string", "null"]
4394                  },
4395                  "resolveSourceMapLocations": {
4396                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
4397                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
4398                    "items": { "type": "string" },
4399                    "type": ["array", "null"]
4400                  },
4401                  "runtimeSourcemapPausePatterns": {
4402                    "default": [],
4403                    "items": { "type": "string" },
4404                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
4405                    "type": "array"
4406                  },
4407                  "showAsyncStacks": {
4408                    "default": true,
4409                    "description": "Show the async calls that led to the current call stack.",
4410                    "oneOf": [
4411                      { "type": "boolean" },
4412                      {
4413                        "properties": { "onAttach": { "default": 32, "type": "number" } },
4414                        "required": ["onAttach"],
4415                        "type": "object"
4416                      },
4417                      {
4418                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
4419                        "required": ["onceBreakpointResolved"],
4420                        "type": "object"
4421                      }
4422                    ]
4423                  },
4424                  "skipFiles": {
4425                    "default": ["${/**"],
4426                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
4427                    "type": "array"
4428                  },
4429                  "smartStep": {
4430                    "default": true,
4431                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
4432                    "type": "boolean"
4433                  },
4434                  "sourceMapPathOverrides": {
4435                    "default": {
4436                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
4437                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
4438                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
4439                    },
4440                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
4441                    "type": "object"
4442                  },
4443                  "sourceMapRenames": {
4444                    "default": true,
4445                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
4446                    "type": "boolean"
4447                  },
4448                  "sourceMaps": {
4449                    "default": true,
4450                    "description": "Use JavaScript source maps (if they exist).",
4451                    "type": "boolean"
4452                  },
4453                  "timeout": {
4454                    "default": 10000,
4455                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
4456                    "type": "number"
4457                  },
4458                  "timeouts": {
4459                    "additionalProperties": false,
4460                    "default": {},
4461                    "description": "Timeouts for several debugger operations.",
4462                    "markdownDescription": "Timeouts for several debugger operations.",
4463                    "properties": {
4464                      "hoverEvaluation": {
4465                        "default": 500,
4466                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
4467                        "type": "number"
4468                      },
4469                      "sourceMapCumulativePause": {
4470                        "default": 1000,
4471                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
4472                        "type": "number"
4473                      },
4474                      "sourceMapMinPause": {
4475                        "default": 1000,
4476                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
4477                        "type": "number"
4478                      }
4479                    },
4480                    "type": "object"
4481                  },
4482                  "trace": {
4483                    "default": true,
4484                    "description": "Configures what diagnostic output is produced.",
4485                    "oneOf": [
4486                      {
4487                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
4488                        "type": "boolean"
4489                      },
4490                      {
4491                        "additionalProperties": false,
4492                        "properties": {
4493                          "logFile": {
4494                            "description": "Configures where on disk logs are written.",
4495                            "type": ["string", "null"]
4496                          },
4497                          "stdio": {
4498                            "description": "Whether to return trace data from the launched application or browser.",
4499                            "type": "boolean"
4500                          }
4501                        },
4502                        "type": "object"
4503                      }
4504                    ]
4505                  }
4506                },
4507                "type": "object"
4508              }
4509            ]
4510          },
4511          "showAsyncStacks": {
4512            "default": true,
4513            "description": "Show the async calls that led to the current call stack.",
4514            "oneOf": [
4515              { "type": "boolean" },
4516              {
4517                "properties": { "onAttach": { "default": 32, "type": "number" } },
4518                "required": ["onAttach"],
4519                "type": "object"
4520              },
4521              {
4522                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
4523                "required": ["onceBreakpointResolved"],
4524                "type": "object"
4525              }
4526            ]
4527          },
4528          "skipFiles": {
4529            "default": ["${/**"],
4530            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
4531            "type": "array"
4532          },
4533          "smartStep": {
4534            "default": true,
4535            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
4536            "type": "boolean"
4537          },
4538          "sourceMapPathOverrides": {
4539            "default": {
4540              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
4541              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
4542              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
4543            },
4544            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
4545            "type": "object"
4546          },
4547          "sourceMapRenames": {
4548            "default": true,
4549            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
4550            "type": "boolean"
4551          },
4552          "sourceMaps": {
4553            "default": true,
4554            "description": "Use JavaScript source maps (if they exist).",
4555            "type": "boolean"
4556          },
4557          "targetSelection": {
4558            "default": "automatic",
4559            "enum": ["pick", "automatic"],
4560            "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
4561            "type": "string"
4562          },
4563          "timeout": {
4564            "default": 10000,
4565            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
4566            "type": "number"
4567          },
4568          "timeouts": {
4569            "additionalProperties": false,
4570            "default": {},
4571            "description": "Timeouts for several debugger operations.",
4572            "markdownDescription": "Timeouts for several debugger operations.",
4573            "properties": {
4574              "hoverEvaluation": {
4575                "default": 500,
4576                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
4577                "type": "number"
4578              },
4579              "sourceMapCumulativePause": {
4580                "default": 1000,
4581                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
4582                "type": "number"
4583              },
4584              "sourceMapMinPause": {
4585                "default": 1000,
4586                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
4587                "type": "number"
4588              }
4589            },
4590            "type": "object"
4591          },
4592          "trace": {
4593            "default": true,
4594            "description": "Configures what diagnostic output is produced.",
4595            "oneOf": [
4596              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
4597              {
4598                "additionalProperties": false,
4599                "properties": {
4600                  "logFile": {
4601                    "description": "Configures where on disk logs are written.",
4602                    "type": ["string", "null"]
4603                  },
4604                  "stdio": {
4605                    "description": "Whether to return trace data from the launched application or browser.",
4606                    "type": "boolean"
4607                  }
4608                },
4609                "type": "object"
4610              }
4611            ]
4612          },
4613          "url": {
4614            "default": "http://localhost:8080",
4615            "description": "Will search for a tab with this exact url and attach to it, if found",
4616            "tags": ["setup"],
4617            "type": "string"
4618          },
4619          "urlFilter": {
4620            "default": "",
4621            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
4622            "type": "string"
4623          },
4624          "vueComponentPaths": {
4625            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
4626            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
4627            "type": "array"
4628          },
4629          "webRoot": {
4630            "default": "${ZED_WORKTREE_ROOT}",
4631            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
4632            "tags": ["setup"],
4633            "type": "string"
4634          }
4635        }
4636      }
4637    },
4638    {
4639      "if": {
4640        "properties": { "type": { "const": "chrome" }, "request": { "const": "launch" } },
4641        "required": ["type", "request"]
4642      },
4643      "then": {
4644        "properties": {
4645          "browserLaunchLocation": {
4646            "default": null,
4647            "description": "Forces the browser to be launched in one location. In a remote workspace (through ssh or WSL, for example) this can be used to open the browser on the remote machine rather than locally.",
4648            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
4649          },
4650          "cascadeTerminateToConfigurations": {
4651            "default": [],
4652            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
4653            "items": { "type": "string", "uniqueItems": true },
4654            "type": "array"
4655          },
4656          "cleanUp": {
4657            "default": "wholeBrowser",
4658            "description": "What clean-up to do after the debugging session finishes. Close only the tab being debug, vs. close the whole browser.",
4659            "enum": ["wholeBrowser", "onlyTab"],
4660            "type": "string"
4661          },
4662          "customDescriptionGenerator": {
4663            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
4664            "type": "string"
4665          },
4666          "customPropertiesGenerator": {
4667            "deprecated": true,
4668            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
4669            "type": "string"
4670          },
4671          "cwd": {
4672            "default": null,
4673            "description": "Optional working directory for the runtime executable.",
4674            "type": "string"
4675          },
4676          "disableNetworkCache": {
4677            "default": true,
4678            "description": "Controls whether to skip the network cache for each request",
4679            "type": "boolean"
4680          },
4681          "enableContentValidation": {
4682            "default": true,
4683            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
4684            "type": "boolean"
4685          },
4686          "enableDWARF": {
4687            "default": true,
4688            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
4689            "type": "boolean"
4690          },
4691          "env": {
4692            "default": {},
4693            "description": "Optional dictionary of environment key/value pairs for the browser.",
4694            "type": "object"
4695          },
4696          "file": {
4697            "default": "${ZED_WORKTREE_ROOT}/index.html",
4698            "description": "A local html file to open in the browser",
4699            "tags": ["setup"],
4700            "type": "string"
4701          },
4702          "includeDefaultArgs": {
4703            "default": true,
4704            "description": "Whether default browser launch arguments (to disable features that may make debugging harder) will be included in the launch.",
4705            "type": "boolean"
4706          },
4707          "includeLaunchArgs": {
4708            "default": true,
4709            "description": "Advanced: whether any default launch/debugging arguments are set on the browser. The debugger will assume the browser will use pipe debugging such as that which is provided with `--remote-debugging-pipe`.",
4710            "type": "boolean"
4711          },
4712          "inspectUri": {
4713            "default": null,
4714            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
4715            "type": ["string", "null"]
4716          },
4717          "killBehavior": {
4718            "default": "forceful",
4719            "enum": ["forceful", "polite", "none"],
4720            "markdownDescription": "Configures how browser processes are killed when stopping the session with `cleanUp: wholeBrowser`. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
4721            "type": "string"
4722          },
4723          "outFiles": {
4724            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
4725            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
4726            "items": { "type": "string" },
4727            "tags": ["setup"],
4728            "type": ["array"]
4729          },
4730          "outputCapture": {
4731            "default": "console",
4732            "enum": ["console", "std"],
4733            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
4734          },
4735          "pathMapping": {
4736            "default": {},
4737            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
4738            "type": "object"
4739          },
4740          "pauseForSourceMap": {
4741            "default": false,
4742            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
4743            "type": "boolean"
4744          },
4745          "perScriptSourcemaps": {
4746            "default": "auto",
4747            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
4748            "enum": ["yes", "no", "auto"],
4749            "type": "string"
4750          },
4751          "port": {
4752            "default": 0,
4753            "description": "Port for the browser to listen on. Defaults to \"0\", which will cause the browser to be debugged via pipes, which is generally more secure and should be chosen unless you need to attach to the browser from another tool.",
4754            "type": "number"
4755          },
4756          "profileStartup": {
4757            "default": true,
4758            "description": "If true, will start profiling soon as the process launches",
4759            "type": "boolean"
4760          },
4761          "resolveSourceMapLocations": {
4762            "default": null,
4763            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
4764            "items": { "type": "string" },
4765            "type": ["array", "null"]
4766          },
4767          "runtimeArgs": {
4768            "default": [],
4769            "description": "Optional arguments passed to the runtime executable.",
4770            "items": { "type": "string" },
4771            "type": "array"
4772          },
4773          "runtimeExecutable": {
4774            "default": "stable",
4775            "description": "Either 'canary', 'stable', 'custom' or path to the browser executable. Custom means a custom wrapper, custom build or CHROME_PATH environment variable.",
4776            "type": ["string", "null"]
4777          },
4778          "server": {
4779            "oneOf": [
4780              {
4781                "additionalProperties": false,
4782                "default": { "program": "node my-server.js" },
4783                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
4784                "properties": {
4785                  "args": {
4786                    "default": [],
4787                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
4788                    "items": { "type": "string" },
4789                    "tags": ["setup"],
4790                    "type": ["array", "string"]
4791                  },
4792                  "attachSimplePort": {
4793                    "default": 9229,
4794                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
4795                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
4796                  },
4797                  "autoAttachChildProcesses": {
4798                    "default": true,
4799                    "description": "Attach debugger to new child processes automatically.",
4800                    "type": "boolean"
4801                  },
4802                  "cascadeTerminateToConfigurations": {
4803                    "default": [],
4804                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
4805                    "items": { "type": "string", "uniqueItems": true },
4806                    "type": "array"
4807                  },
4808                  "console": {
4809                    "default": "internalConsole",
4810                    "description": "Where to launch the debug target.",
4811                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
4812                    "enumDescriptions": [
4813                      "VS Code Debug Console (which doesn't support to read input from a program)",
4814                      "VS Code's integrated terminal",
4815                      "External terminal that can be configured via user settings"
4816                    ],
4817                    "type": "string"
4818                  },
4819                  "customDescriptionGenerator": {
4820                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
4821                    "type": "string"
4822                  },
4823                  "customPropertiesGenerator": {
4824                    "deprecated": true,
4825                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
4826                    "type": "string"
4827                  },
4828                  "cwd": {
4829                    "default": "${ZED_WORKTREE_ROOT}",
4830                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
4831                    "tags": ["setup"],
4832                    "type": "string"
4833                  },
4834                  "enableContentValidation": {
4835                    "default": true,
4836                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
4837                    "type": "boolean"
4838                  },
4839                  "enableDWARF": {
4840                    "default": true,
4841                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
4842                    "type": "boolean"
4843                  },
4844                  "env": {
4845                    "additionalProperties": { "type": ["string", "null"] },
4846                    "default": {},
4847                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
4848                    "tags": ["setup"],
4849                    "type": "object"
4850                  },
4851                  "envFile": {
4852                    "default": "${ZED_WORKTREE_ROOT}/.env",
4853                    "description": "Absolute path to a file containing environment variable definitions.",
4854                    "type": "string"
4855                  },
4856                  "experimentalNetworking": {
4857                    "default": "auto",
4858                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
4859                    "enum": ["auto", "on", "off"],
4860                    "type": "string"
4861                  },
4862                  "killBehavior": {
4863                    "default": "forceful",
4864                    "enum": ["forceful", "polite", "none"],
4865                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
4866                    "type": "string"
4867                  },
4868                  "localRoot": {
4869                    "default": null,
4870                    "description": "Path to the local directory containing the program.",
4871                    "type": ["string", "null"]
4872                  },
4873                  "nodeVersionHint": {
4874                    "default": 12,
4875                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
4876                    "minimum": 8,
4877                    "type": "number"
4878                  },
4879                  "outFiles": {
4880                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
4881                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
4882                    "items": { "type": "string" },
4883                    "tags": ["setup"],
4884                    "type": ["array"]
4885                  },
4886                  "outputCapture": {
4887                    "default": "console",
4888                    "enum": ["console", "std"],
4889                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
4890                  },
4891                  "pauseForSourceMap": {
4892                    "default": false,
4893                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
4894                    "type": "boolean"
4895                  },
4896                  "profileStartup": {
4897                    "default": true,
4898                    "description": "If true, will start profiling as soon as the process launches",
4899                    "type": "boolean"
4900                  },
4901                  "program": {
4902                    "default": "",
4903                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
4904                    "tags": ["setup"],
4905                    "type": "string"
4906                  },
4907                  "remoteRoot": {
4908                    "default": null,
4909                    "description": "Absolute path to the remote directory containing the program.",
4910                    "type": ["string", "null"]
4911                  },
4912                  "resolveSourceMapLocations": {
4913                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
4914                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
4915                    "items": { "type": "string" },
4916                    "type": ["array", "null"]
4917                  },
4918                  "restart": {
4919                    "default": true,
4920                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
4921                    "oneOf": [
4922                      { "type": "boolean" },
4923                      {
4924                        "properties": {
4925                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
4926                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
4927                        },
4928                        "type": "object"
4929                      }
4930                    ]
4931                  },
4932                  "runtimeArgs": {
4933                    "default": [],
4934                    "description": "Optional arguments passed to the runtime executable.",
4935                    "items": { "type": "string" },
4936                    "tags": ["setup"],
4937                    "type": "array"
4938                  },
4939                  "runtimeExecutable": {
4940                    "default": "node",
4941                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
4942                    "type": ["string", "null"]
4943                  },
4944                  "runtimeSourcemapPausePatterns": {
4945                    "default": [],
4946                    "items": { "type": "string" },
4947                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
4948                    "type": "array"
4949                  },
4950                  "runtimeVersion": {
4951                    "default": "default",
4952                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
4953                    "type": "string"
4954                  },
4955                  "showAsyncStacks": {
4956                    "default": true,
4957                    "description": "Show the async calls that led to the current call stack.",
4958                    "oneOf": [
4959                      { "type": "boolean" },
4960                      {
4961                        "properties": { "onAttach": { "default": 32, "type": "number" } },
4962                        "required": ["onAttach"],
4963                        "type": "object"
4964                      },
4965                      {
4966                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
4967                        "required": ["onceBreakpointResolved"],
4968                        "type": "object"
4969                      }
4970                    ]
4971                  },
4972                  "skipFiles": {
4973                    "default": ["${/**"],
4974                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
4975                    "type": "array"
4976                  },
4977                  "smartStep": {
4978                    "default": true,
4979                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
4980                    "type": "boolean"
4981                  },
4982                  "sourceMapPathOverrides": {
4983                    "default": {
4984                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
4985                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
4986                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
4987                    },
4988                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
4989                    "type": "object"
4990                  },
4991                  "sourceMapRenames": {
4992                    "default": true,
4993                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
4994                    "type": "boolean"
4995                  },
4996                  "sourceMaps": {
4997                    "default": true,
4998                    "description": "Use JavaScript source maps (if they exist).",
4999                    "type": "boolean"
5000                  },
5001                  "stopOnEntry": {
5002                    "default": true,
5003                    "description": "Automatically stop program after launch.",
5004                    "type": ["boolean", "string"]
5005                  },
5006                  "timeout": {
5007                    "default": 10000,
5008                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
5009                    "type": "number"
5010                  },
5011                  "timeouts": {
5012                    "additionalProperties": false,
5013                    "default": {},
5014                    "description": "Timeouts for several debugger operations.",
5015                    "markdownDescription": "Timeouts for several debugger operations.",
5016                    "properties": {
5017                      "hoverEvaluation": {
5018                        "default": 500,
5019                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
5020                        "type": "number"
5021                      },
5022                      "sourceMapCumulativePause": {
5023                        "default": 1000,
5024                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
5025                        "type": "number"
5026                      },
5027                      "sourceMapMinPause": {
5028                        "default": 1000,
5029                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
5030                        "type": "number"
5031                      }
5032                    },
5033                    "type": "object"
5034                  },
5035                  "trace": {
5036                    "default": true,
5037                    "description": "Configures what diagnostic output is produced.",
5038                    "oneOf": [
5039                      {
5040                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
5041                        "type": "boolean"
5042                      },
5043                      {
5044                        "additionalProperties": false,
5045                        "properties": {
5046                          "logFile": {
5047                            "description": "Configures where on disk logs are written.",
5048                            "type": ["string", "null"]
5049                          },
5050                          "stdio": {
5051                            "description": "Whether to return trace data from the launched application or browser.",
5052                            "type": "boolean"
5053                          }
5054                        },
5055                        "type": "object"
5056                      }
5057                    ]
5058                  }
5059                },
5060                "type": "object"
5061              },
5062              {
5063                "additionalProperties": false,
5064                "default": { "program": "npm start" },
5065                "description": "JavaScript Debug Terminal",
5066                "properties": {
5067                  "autoAttachChildProcesses": {
5068                    "default": true,
5069                    "description": "Attach debugger to new child processes automatically.",
5070                    "type": "boolean"
5071                  },
5072                  "cascadeTerminateToConfigurations": {
5073                    "default": [],
5074                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
5075                    "items": { "type": "string", "uniqueItems": true },
5076                    "type": "array"
5077                  },
5078                  "command": {
5079                    "default": "npm start",
5080                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
5081                    "tags": ["setup"],
5082                    "type": ["string", "null"]
5083                  },
5084                  "customDescriptionGenerator": {
5085                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
5086                    "type": "string"
5087                  },
5088                  "customPropertiesGenerator": {
5089                    "deprecated": true,
5090                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
5091                    "type": "string"
5092                  },
5093                  "cwd": {
5094                    "default": "${ZED_WORKTREE_ROOT}",
5095                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
5096                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
5097                    "tags": ["setup"],
5098                    "type": "string"
5099                  },
5100                  "enableContentValidation": {
5101                    "default": true,
5102                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
5103                    "type": "boolean"
5104                  },
5105                  "enableDWARF": {
5106                    "default": true,
5107                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
5108                    "type": "boolean"
5109                  },
5110                  "env": {
5111                    "additionalProperties": { "type": ["string", "null"] },
5112                    "default": {},
5113                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
5114                    "tags": ["setup"],
5115                    "type": "object"
5116                  },
5117                  "envFile": {
5118                    "default": "${ZED_WORKTREE_ROOT}/.env",
5119                    "description": "Absolute path to a file containing environment variable definitions.",
5120                    "type": "string"
5121                  },
5122                  "localRoot": {
5123                    "default": null,
5124                    "description": "Path to the local directory containing the program.",
5125                    "type": ["string", "null"]
5126                  },
5127                  "nodeVersionHint": {
5128                    "default": 12,
5129                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
5130                    "minimum": 8,
5131                    "type": "number"
5132                  },
5133                  "outFiles": {
5134                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
5135                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
5136                    "items": { "type": "string" },
5137                    "tags": ["setup"],
5138                    "type": ["array"]
5139                  },
5140                  "outputCapture": {
5141                    "default": "console",
5142                    "enum": ["console", "std"],
5143                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
5144                  },
5145                  "pauseForSourceMap": {
5146                    "default": false,
5147                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
5148                    "type": "boolean"
5149                  },
5150                  "remoteRoot": {
5151                    "default": null,
5152                    "description": "Absolute path to the remote directory containing the program.",
5153                    "type": ["string", "null"]
5154                  },
5155                  "resolveSourceMapLocations": {
5156                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
5157                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
5158                    "items": { "type": "string" },
5159                    "type": ["array", "null"]
5160                  },
5161                  "runtimeSourcemapPausePatterns": {
5162                    "default": [],
5163                    "items": { "type": "string" },
5164                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
5165                    "type": "array"
5166                  },
5167                  "showAsyncStacks": {
5168                    "default": true,
5169                    "description": "Show the async calls that led to the current call stack.",
5170                    "oneOf": [
5171                      { "type": "boolean" },
5172                      {
5173                        "properties": { "onAttach": { "default": 32, "type": "number" } },
5174                        "required": ["onAttach"],
5175                        "type": "object"
5176                      },
5177                      {
5178                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
5179                        "required": ["onceBreakpointResolved"],
5180                        "type": "object"
5181                      }
5182                    ]
5183                  },
5184                  "skipFiles": {
5185                    "default": ["${/**"],
5186                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
5187                    "type": "array"
5188                  },
5189                  "smartStep": {
5190                    "default": true,
5191                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
5192                    "type": "boolean"
5193                  },
5194                  "sourceMapPathOverrides": {
5195                    "default": {
5196                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
5197                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
5198                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
5199                    },
5200                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
5201                    "type": "object"
5202                  },
5203                  "sourceMapRenames": {
5204                    "default": true,
5205                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
5206                    "type": "boolean"
5207                  },
5208                  "sourceMaps": {
5209                    "default": true,
5210                    "description": "Use JavaScript source maps (if they exist).",
5211                    "type": "boolean"
5212                  },
5213                  "timeout": {
5214                    "default": 10000,
5215                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
5216                    "type": "number"
5217                  },
5218                  "timeouts": {
5219                    "additionalProperties": false,
5220                    "default": {},
5221                    "description": "Timeouts for several debugger operations.",
5222                    "markdownDescription": "Timeouts for several debugger operations.",
5223                    "properties": {
5224                      "hoverEvaluation": {
5225                        "default": 500,
5226                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
5227                        "type": "number"
5228                      },
5229                      "sourceMapCumulativePause": {
5230                        "default": 1000,
5231                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
5232                        "type": "number"
5233                      },
5234                      "sourceMapMinPause": {
5235                        "default": 1000,
5236                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
5237                        "type": "number"
5238                      }
5239                    },
5240                    "type": "object"
5241                  },
5242                  "trace": {
5243                    "default": true,
5244                    "description": "Configures what diagnostic output is produced.",
5245                    "oneOf": [
5246                      {
5247                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
5248                        "type": "boolean"
5249                      },
5250                      {
5251                        "additionalProperties": false,
5252                        "properties": {
5253                          "logFile": {
5254                            "description": "Configures where on disk logs are written.",
5255                            "type": ["string", "null"]
5256                          },
5257                          "stdio": {
5258                            "description": "Whether to return trace data from the launched application or browser.",
5259                            "type": "boolean"
5260                          }
5261                        },
5262                        "type": "object"
5263                      }
5264                    ]
5265                  }
5266                },
5267                "type": "object"
5268              }
5269            ]
5270          },
5271          "showAsyncStacks": {
5272            "default": true,
5273            "description": "Show the async calls that led to the current call stack.",
5274            "oneOf": [
5275              { "type": "boolean" },
5276              {
5277                "properties": { "onAttach": { "default": 32, "type": "number" } },
5278                "required": ["onAttach"],
5279                "type": "object"
5280              },
5281              {
5282                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
5283                "required": ["onceBreakpointResolved"],
5284                "type": "object"
5285              }
5286            ]
5287          },
5288          "skipFiles": {
5289            "default": ["${/**"],
5290            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
5291            "type": "array"
5292          },
5293          "smartStep": {
5294            "default": true,
5295            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
5296            "type": "boolean"
5297          },
5298          "sourceMapPathOverrides": {
5299            "default": {
5300              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
5301              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
5302              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
5303            },
5304            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
5305            "type": "object"
5306          },
5307          "sourceMapRenames": {
5308            "default": true,
5309            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
5310            "type": "boolean"
5311          },
5312          "sourceMaps": {
5313            "default": true,
5314            "description": "Use JavaScript source maps (if they exist).",
5315            "type": "boolean"
5316          },
5317          "timeout": {
5318            "default": 10000,
5319            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
5320            "type": "number"
5321          },
5322          "timeouts": {
5323            "additionalProperties": false,
5324            "default": {},
5325            "description": "Timeouts for several debugger operations.",
5326            "markdownDescription": "Timeouts for several debugger operations.",
5327            "properties": {
5328              "hoverEvaluation": {
5329                "default": 500,
5330                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
5331                "type": "number"
5332              },
5333              "sourceMapCumulativePause": {
5334                "default": 1000,
5335                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
5336                "type": "number"
5337              },
5338              "sourceMapMinPause": {
5339                "default": 1000,
5340                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
5341                "type": "number"
5342              }
5343            },
5344            "type": "object"
5345          },
5346          "trace": {
5347            "default": true,
5348            "description": "Configures what diagnostic output is produced.",
5349            "oneOf": [
5350              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
5351              {
5352                "additionalProperties": false,
5353                "properties": {
5354                  "logFile": {
5355                    "description": "Configures where on disk logs are written.",
5356                    "type": ["string", "null"]
5357                  },
5358                  "stdio": {
5359                    "description": "Whether to return trace data from the launched application or browser.",
5360                    "type": "boolean"
5361                  }
5362                },
5363                "type": "object"
5364              }
5365            ]
5366          },
5367          "url": {
5368            "default": "http://localhost:8080",
5369            "description": "Will search for a tab with this exact url and attach to it, if found",
5370            "tags": ["setup"],
5371            "type": "string"
5372          },
5373          "urlFilter": {
5374            "default": "",
5375            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
5376            "type": "string"
5377          },
5378          "userDataDir": {
5379            "default": true,
5380            "description": "By default, the browser is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile. A new browser can't be launched if an instance is already running from `userDataDir`.",
5381            "type": ["string", "boolean"]
5382          },
5383          "vueComponentPaths": {
5384            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
5385            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
5386            "type": "array"
5387          },
5388          "webRoot": {
5389            "default": "${ZED_WORKTREE_ROOT}",
5390            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
5391            "tags": ["setup"],
5392            "type": "string"
5393          }
5394        }
5395      }
5396    },
5397    {
5398      "if": {
5399        "properties": { "type": { "const": "chrome" }, "request": { "const": "attach" } },
5400        "required": ["type", "request"]
5401      },
5402      "then": {
5403        "properties": {
5404          "address": {
5405            "default": "localhost",
5406            "description": "IP address or hostname the debugged browser is listening on.",
5407            "type": "string"
5408          },
5409          "browserAttachLocation": {
5410            "default": null,
5411            "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
5412            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
5413          },
5414          "cascadeTerminateToConfigurations": {
5415            "default": [],
5416            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
5417            "items": { "type": "string", "uniqueItems": true },
5418            "type": "array"
5419          },
5420          "customDescriptionGenerator": {
5421            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
5422            "type": "string"
5423          },
5424          "customPropertiesGenerator": {
5425            "deprecated": true,
5426            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
5427            "type": "string"
5428          },
5429          "disableNetworkCache": {
5430            "default": true,
5431            "description": "Controls whether to skip the network cache for each request",
5432            "type": "boolean"
5433          },
5434          "enableContentValidation": {
5435            "default": true,
5436            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
5437            "type": "boolean"
5438          },
5439          "enableDWARF": {
5440            "default": true,
5441            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
5442            "type": "boolean"
5443          },
5444          "inspectUri": {
5445            "default": null,
5446            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
5447            "type": ["string", "null"]
5448          },
5449          "outFiles": {
5450            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
5451            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
5452            "items": { "type": "string" },
5453            "tags": ["setup"],
5454            "type": ["array"]
5455          },
5456          "outputCapture": {
5457            "default": "console",
5458            "enum": ["console", "std"],
5459            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
5460          },
5461          "pathMapping": {
5462            "default": {},
5463            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
5464            "type": "object"
5465          },
5466          "pauseForSourceMap": {
5467            "default": false,
5468            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
5469            "type": "boolean"
5470          },
5471          "perScriptSourcemaps": {
5472            "default": "auto",
5473            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
5474            "enum": ["yes", "no", "auto"],
5475            "type": "string"
5476          },
5477          "port": {
5478            "default": 9229,
5479            "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
5480            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
5481            "tags": ["setup"]
5482          },
5483          "resolveSourceMapLocations": {
5484            "default": null,
5485            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
5486            "items": { "type": "string" },
5487            "type": ["array", "null"]
5488          },
5489          "restart": {
5490            "default": false,
5491            "markdownDescription": "Whether to reconnect if the browser connection is closed",
5492            "type": "boolean"
5493          },
5494          "server": {
5495            "oneOf": [
5496              {
5497                "additionalProperties": false,
5498                "default": { "program": "node my-server.js" },
5499                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
5500                "properties": {
5501                  "args": {
5502                    "default": [],
5503                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
5504                    "items": { "type": "string" },
5505                    "tags": ["setup"],
5506                    "type": ["array", "string"]
5507                  },
5508                  "attachSimplePort": {
5509                    "default": 9229,
5510                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
5511                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
5512                  },
5513                  "autoAttachChildProcesses": {
5514                    "default": true,
5515                    "description": "Attach debugger to new child processes automatically.",
5516                    "type": "boolean"
5517                  },
5518                  "cascadeTerminateToConfigurations": {
5519                    "default": [],
5520                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
5521                    "items": { "type": "string", "uniqueItems": true },
5522                    "type": "array"
5523                  },
5524                  "console": {
5525                    "default": "internalConsole",
5526                    "description": "Where to launch the debug target.",
5527                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
5528                    "enumDescriptions": [
5529                      "VS Code Debug Console (which doesn't support to read input from a program)",
5530                      "VS Code's integrated terminal",
5531                      "External terminal that can be configured via user settings"
5532                    ],
5533                    "type": "string"
5534                  },
5535                  "customDescriptionGenerator": {
5536                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
5537                    "type": "string"
5538                  },
5539                  "customPropertiesGenerator": {
5540                    "deprecated": true,
5541                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
5542                    "type": "string"
5543                  },
5544                  "cwd": {
5545                    "default": "${ZED_WORKTREE_ROOT}",
5546                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
5547                    "tags": ["setup"],
5548                    "type": "string"
5549                  },
5550                  "enableContentValidation": {
5551                    "default": true,
5552                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
5553                    "type": "boolean"
5554                  },
5555                  "enableDWARF": {
5556                    "default": true,
5557                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
5558                    "type": "boolean"
5559                  },
5560                  "env": {
5561                    "additionalProperties": { "type": ["string", "null"] },
5562                    "default": {},
5563                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
5564                    "tags": ["setup"],
5565                    "type": "object"
5566                  },
5567                  "envFile": {
5568                    "default": "${ZED_WORKTREE_ROOT}/.env",
5569                    "description": "Absolute path to a file containing environment variable definitions.",
5570                    "type": "string"
5571                  },
5572                  "experimentalNetworking": {
5573                    "default": "auto",
5574                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
5575                    "enum": ["auto", "on", "off"],
5576                    "type": "string"
5577                  },
5578                  "killBehavior": {
5579                    "default": "forceful",
5580                    "enum": ["forceful", "polite", "none"],
5581                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
5582                    "type": "string"
5583                  },
5584                  "localRoot": {
5585                    "default": null,
5586                    "description": "Path to the local directory containing the program.",
5587                    "type": ["string", "null"]
5588                  },
5589                  "nodeVersionHint": {
5590                    "default": 12,
5591                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
5592                    "minimum": 8,
5593                    "type": "number"
5594                  },
5595                  "outFiles": {
5596                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
5597                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
5598                    "items": { "type": "string" },
5599                    "tags": ["setup"],
5600                    "type": ["array"]
5601                  },
5602                  "outputCapture": {
5603                    "default": "console",
5604                    "enum": ["console", "std"],
5605                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
5606                  },
5607                  "pauseForSourceMap": {
5608                    "default": false,
5609                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
5610                    "type": "boolean"
5611                  },
5612                  "profileStartup": {
5613                    "default": true,
5614                    "description": "If true, will start profiling as soon as the process launches",
5615                    "type": "boolean"
5616                  },
5617                  "program": {
5618                    "default": "",
5619                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
5620                    "tags": ["setup"],
5621                    "type": "string"
5622                  },
5623                  "remoteRoot": {
5624                    "default": null,
5625                    "description": "Absolute path to the remote directory containing the program.",
5626                    "type": ["string", "null"]
5627                  },
5628                  "resolveSourceMapLocations": {
5629                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
5630                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
5631                    "items": { "type": "string" },
5632                    "type": ["array", "null"]
5633                  },
5634                  "restart": {
5635                    "default": true,
5636                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
5637                    "oneOf": [
5638                      { "type": "boolean" },
5639                      {
5640                        "properties": {
5641                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
5642                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
5643                        },
5644                        "type": "object"
5645                      }
5646                    ]
5647                  },
5648                  "runtimeArgs": {
5649                    "default": [],
5650                    "description": "Optional arguments passed to the runtime executable.",
5651                    "items": { "type": "string" },
5652                    "tags": ["setup"],
5653                    "type": "array"
5654                  },
5655                  "runtimeExecutable": {
5656                    "default": "node",
5657                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
5658                    "type": ["string", "null"]
5659                  },
5660                  "runtimeSourcemapPausePatterns": {
5661                    "default": [],
5662                    "items": { "type": "string" },
5663                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
5664                    "type": "array"
5665                  },
5666                  "runtimeVersion": {
5667                    "default": "default",
5668                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
5669                    "type": "string"
5670                  },
5671                  "showAsyncStacks": {
5672                    "default": true,
5673                    "description": "Show the async calls that led to the current call stack.",
5674                    "oneOf": [
5675                      { "type": "boolean" },
5676                      {
5677                        "properties": { "onAttach": { "default": 32, "type": "number" } },
5678                        "required": ["onAttach"],
5679                        "type": "object"
5680                      },
5681                      {
5682                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
5683                        "required": ["onceBreakpointResolved"],
5684                        "type": "object"
5685                      }
5686                    ]
5687                  },
5688                  "skipFiles": {
5689                    "default": ["${/**"],
5690                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
5691                    "type": "array"
5692                  },
5693                  "smartStep": {
5694                    "default": true,
5695                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
5696                    "type": "boolean"
5697                  },
5698                  "sourceMapPathOverrides": {
5699                    "default": {
5700                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
5701                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
5702                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
5703                    },
5704                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
5705                    "type": "object"
5706                  },
5707                  "sourceMapRenames": {
5708                    "default": true,
5709                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
5710                    "type": "boolean"
5711                  },
5712                  "sourceMaps": {
5713                    "default": true,
5714                    "description": "Use JavaScript source maps (if they exist).",
5715                    "type": "boolean"
5716                  },
5717                  "stopOnEntry": {
5718                    "default": true,
5719                    "description": "Automatically stop program after launch.",
5720                    "type": ["boolean", "string"]
5721                  },
5722                  "timeout": {
5723                    "default": 10000,
5724                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
5725                    "type": "number"
5726                  },
5727                  "timeouts": {
5728                    "additionalProperties": false,
5729                    "default": {},
5730                    "description": "Timeouts for several debugger operations.",
5731                    "markdownDescription": "Timeouts for several debugger operations.",
5732                    "properties": {
5733                      "hoverEvaluation": {
5734                        "default": 500,
5735                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
5736                        "type": "number"
5737                      },
5738                      "sourceMapCumulativePause": {
5739                        "default": 1000,
5740                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
5741                        "type": "number"
5742                      },
5743                      "sourceMapMinPause": {
5744                        "default": 1000,
5745                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
5746                        "type": "number"
5747                      }
5748                    },
5749                    "type": "object"
5750                  },
5751                  "trace": {
5752                    "default": true,
5753                    "description": "Configures what diagnostic output is produced.",
5754                    "oneOf": [
5755                      {
5756                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
5757                        "type": "boolean"
5758                      },
5759                      {
5760                        "additionalProperties": false,
5761                        "properties": {
5762                          "logFile": {
5763                            "description": "Configures where on disk logs are written.",
5764                            "type": ["string", "null"]
5765                          },
5766                          "stdio": {
5767                            "description": "Whether to return trace data from the launched application or browser.",
5768                            "type": "boolean"
5769                          }
5770                        },
5771                        "type": "object"
5772                      }
5773                    ]
5774                  }
5775                },
5776                "type": "object"
5777              },
5778              {
5779                "additionalProperties": false,
5780                "default": { "program": "npm start" },
5781                "description": "JavaScript Debug Terminal",
5782                "properties": {
5783                  "autoAttachChildProcesses": {
5784                    "default": true,
5785                    "description": "Attach debugger to new child processes automatically.",
5786                    "type": "boolean"
5787                  },
5788                  "cascadeTerminateToConfigurations": {
5789                    "default": [],
5790                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
5791                    "items": { "type": "string", "uniqueItems": true },
5792                    "type": "array"
5793                  },
5794                  "command": {
5795                    "default": "npm start",
5796                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
5797                    "tags": ["setup"],
5798                    "type": ["string", "null"]
5799                  },
5800                  "customDescriptionGenerator": {
5801                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
5802                    "type": "string"
5803                  },
5804                  "customPropertiesGenerator": {
5805                    "deprecated": true,
5806                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
5807                    "type": "string"
5808                  },
5809                  "cwd": {
5810                    "default": "${ZED_WORKTREE_ROOT}",
5811                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
5812                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
5813                    "tags": ["setup"],
5814                    "type": "string"
5815                  },
5816                  "enableContentValidation": {
5817                    "default": true,
5818                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
5819                    "type": "boolean"
5820                  },
5821                  "enableDWARF": {
5822                    "default": true,
5823                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
5824                    "type": "boolean"
5825                  },
5826                  "env": {
5827                    "additionalProperties": { "type": ["string", "null"] },
5828                    "default": {},
5829                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
5830                    "tags": ["setup"],
5831                    "type": "object"
5832                  },
5833                  "envFile": {
5834                    "default": "${ZED_WORKTREE_ROOT}/.env",
5835                    "description": "Absolute path to a file containing environment variable definitions.",
5836                    "type": "string"
5837                  },
5838                  "localRoot": {
5839                    "default": null,
5840                    "description": "Path to the local directory containing the program.",
5841                    "type": ["string", "null"]
5842                  },
5843                  "nodeVersionHint": {
5844                    "default": 12,
5845                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
5846                    "minimum": 8,
5847                    "type": "number"
5848                  },
5849                  "outFiles": {
5850                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
5851                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
5852                    "items": { "type": "string" },
5853                    "tags": ["setup"],
5854                    "type": ["array"]
5855                  },
5856                  "outputCapture": {
5857                    "default": "console",
5858                    "enum": ["console", "std"],
5859                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
5860                  },
5861                  "pauseForSourceMap": {
5862                    "default": false,
5863                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
5864                    "type": "boolean"
5865                  },
5866                  "remoteRoot": {
5867                    "default": null,
5868                    "description": "Absolute path to the remote directory containing the program.",
5869                    "type": ["string", "null"]
5870                  },
5871                  "resolveSourceMapLocations": {
5872                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
5873                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
5874                    "items": { "type": "string" },
5875                    "type": ["array", "null"]
5876                  },
5877                  "runtimeSourcemapPausePatterns": {
5878                    "default": [],
5879                    "items": { "type": "string" },
5880                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
5881                    "type": "array"
5882                  },
5883                  "showAsyncStacks": {
5884                    "default": true,
5885                    "description": "Show the async calls that led to the current call stack.",
5886                    "oneOf": [
5887                      { "type": "boolean" },
5888                      {
5889                        "properties": { "onAttach": { "default": 32, "type": "number" } },
5890                        "required": ["onAttach"],
5891                        "type": "object"
5892                      },
5893                      {
5894                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
5895                        "required": ["onceBreakpointResolved"],
5896                        "type": "object"
5897                      }
5898                    ]
5899                  },
5900                  "skipFiles": {
5901                    "default": ["${/**"],
5902                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
5903                    "type": "array"
5904                  },
5905                  "smartStep": {
5906                    "default": true,
5907                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
5908                    "type": "boolean"
5909                  },
5910                  "sourceMapPathOverrides": {
5911                    "default": {
5912                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
5913                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
5914                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
5915                    },
5916                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
5917                    "type": "object"
5918                  },
5919                  "sourceMapRenames": {
5920                    "default": true,
5921                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
5922                    "type": "boolean"
5923                  },
5924                  "sourceMaps": {
5925                    "default": true,
5926                    "description": "Use JavaScript source maps (if they exist).",
5927                    "type": "boolean"
5928                  },
5929                  "timeout": {
5930                    "default": 10000,
5931                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
5932                    "type": "number"
5933                  },
5934                  "timeouts": {
5935                    "additionalProperties": false,
5936                    "default": {},
5937                    "description": "Timeouts for several debugger operations.",
5938                    "markdownDescription": "Timeouts for several debugger operations.",
5939                    "properties": {
5940                      "hoverEvaluation": {
5941                        "default": 500,
5942                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
5943                        "type": "number"
5944                      },
5945                      "sourceMapCumulativePause": {
5946                        "default": 1000,
5947                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
5948                        "type": "number"
5949                      },
5950                      "sourceMapMinPause": {
5951                        "default": 1000,
5952                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
5953                        "type": "number"
5954                      }
5955                    },
5956                    "type": "object"
5957                  },
5958                  "trace": {
5959                    "default": true,
5960                    "description": "Configures what diagnostic output is produced.",
5961                    "oneOf": [
5962                      {
5963                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
5964                        "type": "boolean"
5965                      },
5966                      {
5967                        "additionalProperties": false,
5968                        "properties": {
5969                          "logFile": {
5970                            "description": "Configures where on disk logs are written.",
5971                            "type": ["string", "null"]
5972                          },
5973                          "stdio": {
5974                            "description": "Whether to return trace data from the launched application or browser.",
5975                            "type": "boolean"
5976                          }
5977                        },
5978                        "type": "object"
5979                      }
5980                    ]
5981                  }
5982                },
5983                "type": "object"
5984              }
5985            ]
5986          },
5987          "showAsyncStacks": {
5988            "default": true,
5989            "description": "Show the async calls that led to the current call stack.",
5990            "oneOf": [
5991              { "type": "boolean" },
5992              {
5993                "properties": { "onAttach": { "default": 32, "type": "number" } },
5994                "required": ["onAttach"],
5995                "type": "object"
5996              },
5997              {
5998                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
5999                "required": ["onceBreakpointResolved"],
6000                "type": "object"
6001              }
6002            ]
6003          },
6004          "skipFiles": {
6005            "default": ["${/**"],
6006            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
6007            "type": "array"
6008          },
6009          "smartStep": {
6010            "default": true,
6011            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
6012            "type": "boolean"
6013          },
6014          "sourceMapPathOverrides": {
6015            "default": {
6016              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
6017              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
6018              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
6019            },
6020            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
6021            "type": "object"
6022          },
6023          "sourceMapRenames": {
6024            "default": true,
6025            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
6026            "type": "boolean"
6027          },
6028          "sourceMaps": {
6029            "default": true,
6030            "description": "Use JavaScript source maps (if they exist).",
6031            "type": "boolean"
6032          },
6033          "targetSelection": {
6034            "default": "automatic",
6035            "enum": ["pick", "automatic"],
6036            "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
6037            "type": "string"
6038          },
6039          "timeout": {
6040            "default": 10000,
6041            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
6042            "type": "number"
6043          },
6044          "timeouts": {
6045            "additionalProperties": false,
6046            "default": {},
6047            "description": "Timeouts for several debugger operations.",
6048            "markdownDescription": "Timeouts for several debugger operations.",
6049            "properties": {
6050              "hoverEvaluation": {
6051                "default": 500,
6052                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
6053                "type": "number"
6054              },
6055              "sourceMapCumulativePause": {
6056                "default": 1000,
6057                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
6058                "type": "number"
6059              },
6060              "sourceMapMinPause": {
6061                "default": 1000,
6062                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
6063                "type": "number"
6064              }
6065            },
6066            "type": "object"
6067          },
6068          "trace": {
6069            "default": true,
6070            "description": "Configures what diagnostic output is produced.",
6071            "oneOf": [
6072              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
6073              {
6074                "additionalProperties": false,
6075                "properties": {
6076                  "logFile": {
6077                    "description": "Configures where on disk logs are written.",
6078                    "type": ["string", "null"]
6079                  },
6080                  "stdio": {
6081                    "description": "Whether to return trace data from the launched application or browser.",
6082                    "type": "boolean"
6083                  }
6084                },
6085                "type": "object"
6086              }
6087            ]
6088          },
6089          "url": {
6090            "default": "http://localhost:8080",
6091            "description": "Will search for a tab with this exact url and attach to it, if found",
6092            "tags": ["setup"],
6093            "type": "string"
6094          },
6095          "urlFilter": {
6096            "default": "",
6097            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
6098            "type": "string"
6099          },
6100          "vueComponentPaths": {
6101            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
6102            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
6103            "type": "array"
6104          },
6105          "webRoot": {
6106            "default": "${ZED_WORKTREE_ROOT}",
6107            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
6108            "tags": ["setup"],
6109            "type": "string"
6110          }
6111        }
6112      }
6113    },
6114    {
6115      "if": {
6116        "properties": { "type": { "const": "pwa-msedge" }, "request": { "const": "launch" } },
6117        "required": ["type", "request"]
6118      },
6119      "then": {
6120        "properties": {
6121          "address": {
6122            "default": "localhost",
6123            "description": "When debugging webviews, the IP address or hostname the webview is listening on. Will be automatically discovered if not set.",
6124            "type": "string"
6125          },
6126          "browserLaunchLocation": {
6127            "default": null,
6128            "description": "Forces the browser to be launched in one location. In a remote workspace (through ssh or WSL, for example) this can be used to open the browser on the remote machine rather than locally.",
6129            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
6130          },
6131          "cascadeTerminateToConfigurations": {
6132            "default": [],
6133            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
6134            "items": { "type": "string", "uniqueItems": true },
6135            "type": "array"
6136          },
6137          "cleanUp": {
6138            "default": "wholeBrowser",
6139            "description": "What clean-up to do after the debugging session finishes. Close only the tab being debug, vs. close the whole browser.",
6140            "enum": ["wholeBrowser", "onlyTab"],
6141            "type": "string"
6142          },
6143          "customDescriptionGenerator": {
6144            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
6145            "type": "string"
6146          },
6147          "customPropertiesGenerator": {
6148            "deprecated": true,
6149            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
6150            "type": "string"
6151          },
6152          "cwd": {
6153            "default": null,
6154            "description": "Optional working directory for the runtime executable.",
6155            "type": "string"
6156          },
6157          "disableNetworkCache": {
6158            "default": true,
6159            "description": "Controls whether to skip the network cache for each request",
6160            "type": "boolean"
6161          },
6162          "enableContentValidation": {
6163            "default": true,
6164            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
6165            "type": "boolean"
6166          },
6167          "enableDWARF": {
6168            "default": true,
6169            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
6170            "type": "boolean"
6171          },
6172          "env": {
6173            "default": {},
6174            "description": "Optional dictionary of environment key/value pairs for the browser.",
6175            "type": "object"
6176          },
6177          "file": {
6178            "default": "${ZED_WORKTREE_ROOT}/index.html",
6179            "description": "A local html file to open in the browser",
6180            "tags": ["setup"],
6181            "type": "string"
6182          },
6183          "includeDefaultArgs": {
6184            "default": true,
6185            "description": "Whether default browser launch arguments (to disable features that may make debugging harder) will be included in the launch.",
6186            "type": "boolean"
6187          },
6188          "includeLaunchArgs": {
6189            "default": true,
6190            "description": "Advanced: whether any default launch/debugging arguments are set on the browser. The debugger will assume the browser will use pipe debugging such as that which is provided with `--remote-debugging-pipe`.",
6191            "type": "boolean"
6192          },
6193          "inspectUri": {
6194            "default": null,
6195            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
6196            "type": ["string", "null"]
6197          },
6198          "killBehavior": {
6199            "default": "forceful",
6200            "enum": ["forceful", "polite", "none"],
6201            "markdownDescription": "Configures how browser processes are killed when stopping the session with `cleanUp: wholeBrowser`. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
6202            "type": "string"
6203          },
6204          "outFiles": {
6205            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
6206            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
6207            "items": { "type": "string" },
6208            "tags": ["setup"],
6209            "type": ["array"]
6210          },
6211          "outputCapture": {
6212            "default": "console",
6213            "enum": ["console", "std"],
6214            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
6215          },
6216          "pathMapping": {
6217            "default": {},
6218            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
6219            "type": "object"
6220          },
6221          "pauseForSourceMap": {
6222            "default": false,
6223            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
6224            "type": "boolean"
6225          },
6226          "perScriptSourcemaps": {
6227            "default": "auto",
6228            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
6229            "enum": ["yes", "no", "auto"],
6230            "type": "string"
6231          },
6232          "port": {
6233            "default": 9229,
6234            "description": "When debugging webviews, the port the webview debugger is listening on. Will be automatically discovered if not set.",
6235            "type": "number"
6236          },
6237          "profileStartup": {
6238            "default": true,
6239            "description": "If true, will start profiling soon as the process launches",
6240            "type": "boolean"
6241          },
6242          "resolveSourceMapLocations": {
6243            "default": null,
6244            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
6245            "items": { "type": "string" },
6246            "type": ["array", "null"]
6247          },
6248          "runtimeArgs": {
6249            "default": [],
6250            "description": "Optional arguments passed to the runtime executable.",
6251            "items": { "type": "string" },
6252            "type": "array"
6253          },
6254          "runtimeExecutable": {
6255            "default": "stable",
6256            "description": "Either 'canary', 'stable', 'dev', 'custom' or path to the browser executable. Custom means a custom wrapper, custom build or EDGE_PATH environment variable.",
6257            "type": ["string", "null"]
6258          },
6259          "server": {
6260            "oneOf": [
6261              {
6262                "additionalProperties": false,
6263                "default": { "program": "node my-server.js" },
6264                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
6265                "properties": {
6266                  "args": {
6267                    "default": [],
6268                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
6269                    "items": { "type": "string" },
6270                    "tags": ["setup"],
6271                    "type": ["array", "string"]
6272                  },
6273                  "attachSimplePort": {
6274                    "default": 9229,
6275                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
6276                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
6277                  },
6278                  "autoAttachChildProcesses": {
6279                    "default": true,
6280                    "description": "Attach debugger to new child processes automatically.",
6281                    "type": "boolean"
6282                  },
6283                  "cascadeTerminateToConfigurations": {
6284                    "default": [],
6285                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
6286                    "items": { "type": "string", "uniqueItems": true },
6287                    "type": "array"
6288                  },
6289                  "console": {
6290                    "default": "internalConsole",
6291                    "description": "Where to launch the debug target.",
6292                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
6293                    "enumDescriptions": [
6294                      "VS Code Debug Console (which doesn't support to read input from a program)",
6295                      "VS Code's integrated terminal",
6296                      "External terminal that can be configured via user settings"
6297                    ],
6298                    "type": "string"
6299                  },
6300                  "customDescriptionGenerator": {
6301                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
6302                    "type": "string"
6303                  },
6304                  "customPropertiesGenerator": {
6305                    "deprecated": true,
6306                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
6307                    "type": "string"
6308                  },
6309                  "cwd": {
6310                    "default": "${ZED_WORKTREE_ROOT}",
6311                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
6312                    "tags": ["setup"],
6313                    "type": "string"
6314                  },
6315                  "enableContentValidation": {
6316                    "default": true,
6317                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
6318                    "type": "boolean"
6319                  },
6320                  "enableDWARF": {
6321                    "default": true,
6322                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
6323                    "type": "boolean"
6324                  },
6325                  "env": {
6326                    "additionalProperties": { "type": ["string", "null"] },
6327                    "default": {},
6328                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
6329                    "tags": ["setup"],
6330                    "type": "object"
6331                  },
6332                  "envFile": {
6333                    "default": "${ZED_WORKTREE_ROOT}/.env",
6334                    "description": "Absolute path to a file containing environment variable definitions.",
6335                    "type": "string"
6336                  },
6337                  "experimentalNetworking": {
6338                    "default": "auto",
6339                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
6340                    "enum": ["auto", "on", "off"],
6341                    "type": "string"
6342                  },
6343                  "killBehavior": {
6344                    "default": "forceful",
6345                    "enum": ["forceful", "polite", "none"],
6346                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
6347                    "type": "string"
6348                  },
6349                  "localRoot": {
6350                    "default": null,
6351                    "description": "Path to the local directory containing the program.",
6352                    "type": ["string", "null"]
6353                  },
6354                  "nodeVersionHint": {
6355                    "default": 12,
6356                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
6357                    "minimum": 8,
6358                    "type": "number"
6359                  },
6360                  "outFiles": {
6361                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
6362                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
6363                    "items": { "type": "string" },
6364                    "tags": ["setup"],
6365                    "type": ["array"]
6366                  },
6367                  "outputCapture": {
6368                    "default": "console",
6369                    "enum": ["console", "std"],
6370                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
6371                  },
6372                  "pauseForSourceMap": {
6373                    "default": false,
6374                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
6375                    "type": "boolean"
6376                  },
6377                  "profileStartup": {
6378                    "default": true,
6379                    "description": "If true, will start profiling as soon as the process launches",
6380                    "type": "boolean"
6381                  },
6382                  "program": {
6383                    "default": "",
6384                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
6385                    "tags": ["setup"],
6386                    "type": "string"
6387                  },
6388                  "remoteRoot": {
6389                    "default": null,
6390                    "description": "Absolute path to the remote directory containing the program.",
6391                    "type": ["string", "null"]
6392                  },
6393                  "resolveSourceMapLocations": {
6394                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
6395                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
6396                    "items": { "type": "string" },
6397                    "type": ["array", "null"]
6398                  },
6399                  "restart": {
6400                    "default": true,
6401                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
6402                    "oneOf": [
6403                      { "type": "boolean" },
6404                      {
6405                        "properties": {
6406                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
6407                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
6408                        },
6409                        "type": "object"
6410                      }
6411                    ]
6412                  },
6413                  "runtimeArgs": {
6414                    "default": [],
6415                    "description": "Optional arguments passed to the runtime executable.",
6416                    "items": { "type": "string" },
6417                    "tags": ["setup"],
6418                    "type": "array"
6419                  },
6420                  "runtimeExecutable": {
6421                    "default": "node",
6422                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
6423                    "type": ["string", "null"]
6424                  },
6425                  "runtimeSourcemapPausePatterns": {
6426                    "default": [],
6427                    "items": { "type": "string" },
6428                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
6429                    "type": "array"
6430                  },
6431                  "runtimeVersion": {
6432                    "default": "default",
6433                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
6434                    "type": "string"
6435                  },
6436                  "showAsyncStacks": {
6437                    "default": true,
6438                    "description": "Show the async calls that led to the current call stack.",
6439                    "oneOf": [
6440                      { "type": "boolean" },
6441                      {
6442                        "properties": { "onAttach": { "default": 32, "type": "number" } },
6443                        "required": ["onAttach"],
6444                        "type": "object"
6445                      },
6446                      {
6447                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
6448                        "required": ["onceBreakpointResolved"],
6449                        "type": "object"
6450                      }
6451                    ]
6452                  },
6453                  "skipFiles": {
6454                    "default": ["${/**"],
6455                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
6456                    "type": "array"
6457                  },
6458                  "smartStep": {
6459                    "default": true,
6460                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
6461                    "type": "boolean"
6462                  },
6463                  "sourceMapPathOverrides": {
6464                    "default": {
6465                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
6466                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
6467                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
6468                    },
6469                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
6470                    "type": "object"
6471                  },
6472                  "sourceMapRenames": {
6473                    "default": true,
6474                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
6475                    "type": "boolean"
6476                  },
6477                  "sourceMaps": {
6478                    "default": true,
6479                    "description": "Use JavaScript source maps (if they exist).",
6480                    "type": "boolean"
6481                  },
6482                  "stopOnEntry": {
6483                    "default": true,
6484                    "description": "Automatically stop program after launch.",
6485                    "type": ["boolean", "string"]
6486                  },
6487                  "timeout": {
6488                    "default": 10000,
6489                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
6490                    "type": "number"
6491                  },
6492                  "timeouts": {
6493                    "additionalProperties": false,
6494                    "default": {},
6495                    "description": "Timeouts for several debugger operations.",
6496                    "markdownDescription": "Timeouts for several debugger operations.",
6497                    "properties": {
6498                      "hoverEvaluation": {
6499                        "default": 500,
6500                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
6501                        "type": "number"
6502                      },
6503                      "sourceMapCumulativePause": {
6504                        "default": 1000,
6505                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
6506                        "type": "number"
6507                      },
6508                      "sourceMapMinPause": {
6509                        "default": 1000,
6510                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
6511                        "type": "number"
6512                      }
6513                    },
6514                    "type": "object"
6515                  },
6516                  "trace": {
6517                    "default": true,
6518                    "description": "Configures what diagnostic output is produced.",
6519                    "oneOf": [
6520                      {
6521                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
6522                        "type": "boolean"
6523                      },
6524                      {
6525                        "additionalProperties": false,
6526                        "properties": {
6527                          "logFile": {
6528                            "description": "Configures where on disk logs are written.",
6529                            "type": ["string", "null"]
6530                          },
6531                          "stdio": {
6532                            "description": "Whether to return trace data from the launched application or browser.",
6533                            "type": "boolean"
6534                          }
6535                        },
6536                        "type": "object"
6537                      }
6538                    ]
6539                  }
6540                },
6541                "type": "object"
6542              },
6543              {
6544                "additionalProperties": false,
6545                "default": { "program": "npm start" },
6546                "description": "JavaScript Debug Terminal",
6547                "properties": {
6548                  "autoAttachChildProcesses": {
6549                    "default": true,
6550                    "description": "Attach debugger to new child processes automatically.",
6551                    "type": "boolean"
6552                  },
6553                  "cascadeTerminateToConfigurations": {
6554                    "default": [],
6555                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
6556                    "items": { "type": "string", "uniqueItems": true },
6557                    "type": "array"
6558                  },
6559                  "command": {
6560                    "default": "npm start",
6561                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
6562                    "tags": ["setup"],
6563                    "type": ["string", "null"]
6564                  },
6565                  "customDescriptionGenerator": {
6566                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
6567                    "type": "string"
6568                  },
6569                  "customPropertiesGenerator": {
6570                    "deprecated": true,
6571                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
6572                    "type": "string"
6573                  },
6574                  "cwd": {
6575                    "default": "${ZED_WORKTREE_ROOT}",
6576                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
6577                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
6578                    "tags": ["setup"],
6579                    "type": "string"
6580                  },
6581                  "enableContentValidation": {
6582                    "default": true,
6583                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
6584                    "type": "boolean"
6585                  },
6586                  "enableDWARF": {
6587                    "default": true,
6588                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
6589                    "type": "boolean"
6590                  },
6591                  "env": {
6592                    "additionalProperties": { "type": ["string", "null"] },
6593                    "default": {},
6594                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
6595                    "tags": ["setup"],
6596                    "type": "object"
6597                  },
6598                  "envFile": {
6599                    "default": "${ZED_WORKTREE_ROOT}/.env",
6600                    "description": "Absolute path to a file containing environment variable definitions.",
6601                    "type": "string"
6602                  },
6603                  "localRoot": {
6604                    "default": null,
6605                    "description": "Path to the local directory containing the program.",
6606                    "type": ["string", "null"]
6607                  },
6608                  "nodeVersionHint": {
6609                    "default": 12,
6610                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
6611                    "minimum": 8,
6612                    "type": "number"
6613                  },
6614                  "outFiles": {
6615                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
6616                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
6617                    "items": { "type": "string" },
6618                    "tags": ["setup"],
6619                    "type": ["array"]
6620                  },
6621                  "outputCapture": {
6622                    "default": "console",
6623                    "enum": ["console", "std"],
6624                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
6625                  },
6626                  "pauseForSourceMap": {
6627                    "default": false,
6628                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
6629                    "type": "boolean"
6630                  },
6631                  "remoteRoot": {
6632                    "default": null,
6633                    "description": "Absolute path to the remote directory containing the program.",
6634                    "type": ["string", "null"]
6635                  },
6636                  "resolveSourceMapLocations": {
6637                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
6638                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
6639                    "items": { "type": "string" },
6640                    "type": ["array", "null"]
6641                  },
6642                  "runtimeSourcemapPausePatterns": {
6643                    "default": [],
6644                    "items": { "type": "string" },
6645                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
6646                    "type": "array"
6647                  },
6648                  "showAsyncStacks": {
6649                    "default": true,
6650                    "description": "Show the async calls that led to the current call stack.",
6651                    "oneOf": [
6652                      { "type": "boolean" },
6653                      {
6654                        "properties": { "onAttach": { "default": 32, "type": "number" } },
6655                        "required": ["onAttach"],
6656                        "type": "object"
6657                      },
6658                      {
6659                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
6660                        "required": ["onceBreakpointResolved"],
6661                        "type": "object"
6662                      }
6663                    ]
6664                  },
6665                  "skipFiles": {
6666                    "default": ["${/**"],
6667                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
6668                    "type": "array"
6669                  },
6670                  "smartStep": {
6671                    "default": true,
6672                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
6673                    "type": "boolean"
6674                  },
6675                  "sourceMapPathOverrides": {
6676                    "default": {
6677                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
6678                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
6679                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
6680                    },
6681                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
6682                    "type": "object"
6683                  },
6684                  "sourceMapRenames": {
6685                    "default": true,
6686                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
6687                    "type": "boolean"
6688                  },
6689                  "sourceMaps": {
6690                    "default": true,
6691                    "description": "Use JavaScript source maps (if they exist).",
6692                    "type": "boolean"
6693                  },
6694                  "timeout": {
6695                    "default": 10000,
6696                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
6697                    "type": "number"
6698                  },
6699                  "timeouts": {
6700                    "additionalProperties": false,
6701                    "default": {},
6702                    "description": "Timeouts for several debugger operations.",
6703                    "markdownDescription": "Timeouts for several debugger operations.",
6704                    "properties": {
6705                      "hoverEvaluation": {
6706                        "default": 500,
6707                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
6708                        "type": "number"
6709                      },
6710                      "sourceMapCumulativePause": {
6711                        "default": 1000,
6712                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
6713                        "type": "number"
6714                      },
6715                      "sourceMapMinPause": {
6716                        "default": 1000,
6717                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
6718                        "type": "number"
6719                      }
6720                    },
6721                    "type": "object"
6722                  },
6723                  "trace": {
6724                    "default": true,
6725                    "description": "Configures what diagnostic output is produced.",
6726                    "oneOf": [
6727                      {
6728                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
6729                        "type": "boolean"
6730                      },
6731                      {
6732                        "additionalProperties": false,
6733                        "properties": {
6734                          "logFile": {
6735                            "description": "Configures where on disk logs are written.",
6736                            "type": ["string", "null"]
6737                          },
6738                          "stdio": {
6739                            "description": "Whether to return trace data from the launched application or browser.",
6740                            "type": "boolean"
6741                          }
6742                        },
6743                        "type": "object"
6744                      }
6745                    ]
6746                  }
6747                },
6748                "type": "object"
6749              }
6750            ]
6751          },
6752          "showAsyncStacks": {
6753            "default": true,
6754            "description": "Show the async calls that led to the current call stack.",
6755            "oneOf": [
6756              { "type": "boolean" },
6757              {
6758                "properties": { "onAttach": { "default": 32, "type": "number" } },
6759                "required": ["onAttach"],
6760                "type": "object"
6761              },
6762              {
6763                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
6764                "required": ["onceBreakpointResolved"],
6765                "type": "object"
6766              }
6767            ]
6768          },
6769          "skipFiles": {
6770            "default": ["${/**"],
6771            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
6772            "type": "array"
6773          },
6774          "smartStep": {
6775            "default": true,
6776            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
6777            "type": "boolean"
6778          },
6779          "sourceMapPathOverrides": {
6780            "default": {
6781              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
6782              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
6783              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
6784            },
6785            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
6786            "type": "object"
6787          },
6788          "sourceMapRenames": {
6789            "default": true,
6790            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
6791            "type": "boolean"
6792          },
6793          "sourceMaps": {
6794            "default": true,
6795            "description": "Use JavaScript source maps (if they exist).",
6796            "type": "boolean"
6797          },
6798          "timeout": {
6799            "default": 10000,
6800            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
6801            "type": "number"
6802          },
6803          "timeouts": {
6804            "additionalProperties": false,
6805            "default": {},
6806            "description": "Timeouts for several debugger operations.",
6807            "markdownDescription": "Timeouts for several debugger operations.",
6808            "properties": {
6809              "hoverEvaluation": {
6810                "default": 500,
6811                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
6812                "type": "number"
6813              },
6814              "sourceMapCumulativePause": {
6815                "default": 1000,
6816                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
6817                "type": "number"
6818              },
6819              "sourceMapMinPause": {
6820                "default": 1000,
6821                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
6822                "type": "number"
6823              }
6824            },
6825            "type": "object"
6826          },
6827          "trace": {
6828            "default": true,
6829            "description": "Configures what diagnostic output is produced.",
6830            "oneOf": [
6831              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
6832              {
6833                "additionalProperties": false,
6834                "properties": {
6835                  "logFile": {
6836                    "description": "Configures where on disk logs are written.",
6837                    "type": ["string", "null"]
6838                  },
6839                  "stdio": {
6840                    "description": "Whether to return trace data from the launched application or browser.",
6841                    "type": "boolean"
6842                  }
6843                },
6844                "type": "object"
6845              }
6846            ]
6847          },
6848          "url": {
6849            "default": "http://localhost:8080",
6850            "description": "Will search for a tab with this exact url and attach to it, if found",
6851            "tags": ["setup"],
6852            "type": "string"
6853          },
6854          "urlFilter": {
6855            "default": "",
6856            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
6857            "type": "string"
6858          },
6859          "useWebView": {
6860            "default": false,
6861            "description": "When 'true', the debugger will treat the runtime executable as a host application that contains a WebView allowing you to debug the WebView script content.",
6862            "type": "boolean"
6863          },
6864          "userDataDir": {
6865            "default": true,
6866            "description": "By default, the browser is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile. A new browser can't be launched if an instance is already running from `userDataDir`.",
6867            "type": ["string", "boolean"]
6868          },
6869          "vueComponentPaths": {
6870            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
6871            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
6872            "type": "array"
6873          },
6874          "webRoot": {
6875            "default": "${ZED_WORKTREE_ROOT}",
6876            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
6877            "tags": ["setup"],
6878            "type": "string"
6879          }
6880        }
6881      }
6882    },
6883    {
6884      "if": {
6885        "properties": { "type": { "const": "pwa-msedge" }, "request": { "const": "attach" } },
6886        "required": ["type", "request"]
6887      },
6888      "then": {
6889        "properties": {
6890          "address": {
6891            "default": "localhost",
6892            "description": "IP address or hostname the debugged browser is listening on.",
6893            "type": "string"
6894          },
6895          "browserAttachLocation": {
6896            "default": null,
6897            "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
6898            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
6899          },
6900          "cascadeTerminateToConfigurations": {
6901            "default": [],
6902            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
6903            "items": { "type": "string", "uniqueItems": true },
6904            "type": "array"
6905          },
6906          "customDescriptionGenerator": {
6907            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
6908            "type": "string"
6909          },
6910          "customPropertiesGenerator": {
6911            "deprecated": true,
6912            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
6913            "type": "string"
6914          },
6915          "disableNetworkCache": {
6916            "default": true,
6917            "description": "Controls whether to skip the network cache for each request",
6918            "type": "boolean"
6919          },
6920          "enableContentValidation": {
6921            "default": true,
6922            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
6923            "type": "boolean"
6924          },
6925          "enableDWARF": {
6926            "default": true,
6927            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
6928            "type": "boolean"
6929          },
6930          "inspectUri": {
6931            "default": null,
6932            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
6933            "type": ["string", "null"]
6934          },
6935          "outFiles": {
6936            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
6937            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
6938            "items": { "type": "string" },
6939            "tags": ["setup"],
6940            "type": ["array"]
6941          },
6942          "outputCapture": {
6943            "default": "console",
6944            "enum": ["console", "std"],
6945            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
6946          },
6947          "pathMapping": {
6948            "default": {},
6949            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
6950            "type": "object"
6951          },
6952          "pauseForSourceMap": {
6953            "default": false,
6954            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
6955            "type": "boolean"
6956          },
6957          "perScriptSourcemaps": {
6958            "default": "auto",
6959            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
6960            "enum": ["yes", "no", "auto"],
6961            "type": "string"
6962          },
6963          "port": {
6964            "default": 9229,
6965            "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
6966            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
6967            "tags": ["setup"]
6968          },
6969          "resolveSourceMapLocations": {
6970            "default": null,
6971            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
6972            "items": { "type": "string" },
6973            "type": ["array", "null"]
6974          },
6975          "restart": {
6976            "default": false,
6977            "markdownDescription": "Whether to reconnect if the browser connection is closed",
6978            "type": "boolean"
6979          },
6980          "server": {
6981            "oneOf": [
6982              {
6983                "additionalProperties": false,
6984                "default": { "program": "node my-server.js" },
6985                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
6986                "properties": {
6987                  "args": {
6988                    "default": [],
6989                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
6990                    "items": { "type": "string" },
6991                    "tags": ["setup"],
6992                    "type": ["array", "string"]
6993                  },
6994                  "attachSimplePort": {
6995                    "default": 9229,
6996                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
6997                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
6998                  },
6999                  "autoAttachChildProcesses": {
7000                    "default": true,
7001                    "description": "Attach debugger to new child processes automatically.",
7002                    "type": "boolean"
7003                  },
7004                  "cascadeTerminateToConfigurations": {
7005                    "default": [],
7006                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
7007                    "items": { "type": "string", "uniqueItems": true },
7008                    "type": "array"
7009                  },
7010                  "console": {
7011                    "default": "internalConsole",
7012                    "description": "Where to launch the debug target.",
7013                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
7014                    "enumDescriptions": [
7015                      "VS Code Debug Console (which doesn't support to read input from a program)",
7016                      "VS Code's integrated terminal",
7017                      "External terminal that can be configured via user settings"
7018                    ],
7019                    "type": "string"
7020                  },
7021                  "customDescriptionGenerator": {
7022                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
7023                    "type": "string"
7024                  },
7025                  "customPropertiesGenerator": {
7026                    "deprecated": true,
7027                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
7028                    "type": "string"
7029                  },
7030                  "cwd": {
7031                    "default": "${ZED_WORKTREE_ROOT}",
7032                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
7033                    "tags": ["setup"],
7034                    "type": "string"
7035                  },
7036                  "enableContentValidation": {
7037                    "default": true,
7038                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
7039                    "type": "boolean"
7040                  },
7041                  "enableDWARF": {
7042                    "default": true,
7043                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
7044                    "type": "boolean"
7045                  },
7046                  "env": {
7047                    "additionalProperties": { "type": ["string", "null"] },
7048                    "default": {},
7049                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
7050                    "tags": ["setup"],
7051                    "type": "object"
7052                  },
7053                  "envFile": {
7054                    "default": "${ZED_WORKTREE_ROOT}/.env",
7055                    "description": "Absolute path to a file containing environment variable definitions.",
7056                    "type": "string"
7057                  },
7058                  "experimentalNetworking": {
7059                    "default": "auto",
7060                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
7061                    "enum": ["auto", "on", "off"],
7062                    "type": "string"
7063                  },
7064                  "killBehavior": {
7065                    "default": "forceful",
7066                    "enum": ["forceful", "polite", "none"],
7067                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
7068                    "type": "string"
7069                  },
7070                  "localRoot": {
7071                    "default": null,
7072                    "description": "Path to the local directory containing the program.",
7073                    "type": ["string", "null"]
7074                  },
7075                  "nodeVersionHint": {
7076                    "default": 12,
7077                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
7078                    "minimum": 8,
7079                    "type": "number"
7080                  },
7081                  "outFiles": {
7082                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
7083                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
7084                    "items": { "type": "string" },
7085                    "tags": ["setup"],
7086                    "type": ["array"]
7087                  },
7088                  "outputCapture": {
7089                    "default": "console",
7090                    "enum": ["console", "std"],
7091                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
7092                  },
7093                  "pauseForSourceMap": {
7094                    "default": false,
7095                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
7096                    "type": "boolean"
7097                  },
7098                  "profileStartup": {
7099                    "default": true,
7100                    "description": "If true, will start profiling as soon as the process launches",
7101                    "type": "boolean"
7102                  },
7103                  "program": {
7104                    "default": "",
7105                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
7106                    "tags": ["setup"],
7107                    "type": "string"
7108                  },
7109                  "remoteRoot": {
7110                    "default": null,
7111                    "description": "Absolute path to the remote directory containing the program.",
7112                    "type": ["string", "null"]
7113                  },
7114                  "resolveSourceMapLocations": {
7115                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
7116                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
7117                    "items": { "type": "string" },
7118                    "type": ["array", "null"]
7119                  },
7120                  "restart": {
7121                    "default": true,
7122                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
7123                    "oneOf": [
7124                      { "type": "boolean" },
7125                      {
7126                        "properties": {
7127                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
7128                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
7129                        },
7130                        "type": "object"
7131                      }
7132                    ]
7133                  },
7134                  "runtimeArgs": {
7135                    "default": [],
7136                    "description": "Optional arguments passed to the runtime executable.",
7137                    "items": { "type": "string" },
7138                    "tags": ["setup"],
7139                    "type": "array"
7140                  },
7141                  "runtimeExecutable": {
7142                    "default": "node",
7143                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
7144                    "type": ["string", "null"]
7145                  },
7146                  "runtimeSourcemapPausePatterns": {
7147                    "default": [],
7148                    "items": { "type": "string" },
7149                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
7150                    "type": "array"
7151                  },
7152                  "runtimeVersion": {
7153                    "default": "default",
7154                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
7155                    "type": "string"
7156                  },
7157                  "showAsyncStacks": {
7158                    "default": true,
7159                    "description": "Show the async calls that led to the current call stack.",
7160                    "oneOf": [
7161                      { "type": "boolean" },
7162                      {
7163                        "properties": { "onAttach": { "default": 32, "type": "number" } },
7164                        "required": ["onAttach"],
7165                        "type": "object"
7166                      },
7167                      {
7168                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
7169                        "required": ["onceBreakpointResolved"],
7170                        "type": "object"
7171                      }
7172                    ]
7173                  },
7174                  "skipFiles": {
7175                    "default": ["${/**"],
7176                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
7177                    "type": "array"
7178                  },
7179                  "smartStep": {
7180                    "default": true,
7181                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
7182                    "type": "boolean"
7183                  },
7184                  "sourceMapPathOverrides": {
7185                    "default": {
7186                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
7187                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
7188                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
7189                    },
7190                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
7191                    "type": "object"
7192                  },
7193                  "sourceMapRenames": {
7194                    "default": true,
7195                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
7196                    "type": "boolean"
7197                  },
7198                  "sourceMaps": {
7199                    "default": true,
7200                    "description": "Use JavaScript source maps (if they exist).",
7201                    "type": "boolean"
7202                  },
7203                  "stopOnEntry": {
7204                    "default": true,
7205                    "description": "Automatically stop program after launch.",
7206                    "type": ["boolean", "string"]
7207                  },
7208                  "timeout": {
7209                    "default": 10000,
7210                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
7211                    "type": "number"
7212                  },
7213                  "timeouts": {
7214                    "additionalProperties": false,
7215                    "default": {},
7216                    "description": "Timeouts for several debugger operations.",
7217                    "markdownDescription": "Timeouts for several debugger operations.",
7218                    "properties": {
7219                      "hoverEvaluation": {
7220                        "default": 500,
7221                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
7222                        "type": "number"
7223                      },
7224                      "sourceMapCumulativePause": {
7225                        "default": 1000,
7226                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
7227                        "type": "number"
7228                      },
7229                      "sourceMapMinPause": {
7230                        "default": 1000,
7231                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
7232                        "type": "number"
7233                      }
7234                    },
7235                    "type": "object"
7236                  },
7237                  "trace": {
7238                    "default": true,
7239                    "description": "Configures what diagnostic output is produced.",
7240                    "oneOf": [
7241                      {
7242                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
7243                        "type": "boolean"
7244                      },
7245                      {
7246                        "additionalProperties": false,
7247                        "properties": {
7248                          "logFile": {
7249                            "description": "Configures where on disk logs are written.",
7250                            "type": ["string", "null"]
7251                          },
7252                          "stdio": {
7253                            "description": "Whether to return trace data from the launched application or browser.",
7254                            "type": "boolean"
7255                          }
7256                        },
7257                        "type": "object"
7258                      }
7259                    ]
7260                  }
7261                },
7262                "type": "object"
7263              },
7264              {
7265                "additionalProperties": false,
7266                "default": { "program": "npm start" },
7267                "description": "JavaScript Debug Terminal",
7268                "properties": {
7269                  "autoAttachChildProcesses": {
7270                    "default": true,
7271                    "description": "Attach debugger to new child processes automatically.",
7272                    "type": "boolean"
7273                  },
7274                  "cascadeTerminateToConfigurations": {
7275                    "default": [],
7276                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
7277                    "items": { "type": "string", "uniqueItems": true },
7278                    "type": "array"
7279                  },
7280                  "command": {
7281                    "default": "npm start",
7282                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
7283                    "tags": ["setup"],
7284                    "type": ["string", "null"]
7285                  },
7286                  "customDescriptionGenerator": {
7287                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
7288                    "type": "string"
7289                  },
7290                  "customPropertiesGenerator": {
7291                    "deprecated": true,
7292                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
7293                    "type": "string"
7294                  },
7295                  "cwd": {
7296                    "default": "${ZED_WORKTREE_ROOT}",
7297                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
7298                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
7299                    "tags": ["setup"],
7300                    "type": "string"
7301                  },
7302                  "enableContentValidation": {
7303                    "default": true,
7304                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
7305                    "type": "boolean"
7306                  },
7307                  "enableDWARF": {
7308                    "default": true,
7309                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
7310                    "type": "boolean"
7311                  },
7312                  "env": {
7313                    "additionalProperties": { "type": ["string", "null"] },
7314                    "default": {},
7315                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
7316                    "tags": ["setup"],
7317                    "type": "object"
7318                  },
7319                  "envFile": {
7320                    "default": "${ZED_WORKTREE_ROOT}/.env",
7321                    "description": "Absolute path to a file containing environment variable definitions.",
7322                    "type": "string"
7323                  },
7324                  "localRoot": {
7325                    "default": null,
7326                    "description": "Path to the local directory containing the program.",
7327                    "type": ["string", "null"]
7328                  },
7329                  "nodeVersionHint": {
7330                    "default": 12,
7331                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
7332                    "minimum": 8,
7333                    "type": "number"
7334                  },
7335                  "outFiles": {
7336                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
7337                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
7338                    "items": { "type": "string" },
7339                    "tags": ["setup"],
7340                    "type": ["array"]
7341                  },
7342                  "outputCapture": {
7343                    "default": "console",
7344                    "enum": ["console", "std"],
7345                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
7346                  },
7347                  "pauseForSourceMap": {
7348                    "default": false,
7349                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
7350                    "type": "boolean"
7351                  },
7352                  "remoteRoot": {
7353                    "default": null,
7354                    "description": "Absolute path to the remote directory containing the program.",
7355                    "type": ["string", "null"]
7356                  },
7357                  "resolveSourceMapLocations": {
7358                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
7359                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
7360                    "items": { "type": "string" },
7361                    "type": ["array", "null"]
7362                  },
7363                  "runtimeSourcemapPausePatterns": {
7364                    "default": [],
7365                    "items": { "type": "string" },
7366                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
7367                    "type": "array"
7368                  },
7369                  "showAsyncStacks": {
7370                    "default": true,
7371                    "description": "Show the async calls that led to the current call stack.",
7372                    "oneOf": [
7373                      { "type": "boolean" },
7374                      {
7375                        "properties": { "onAttach": { "default": 32, "type": "number" } },
7376                        "required": ["onAttach"],
7377                        "type": "object"
7378                      },
7379                      {
7380                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
7381                        "required": ["onceBreakpointResolved"],
7382                        "type": "object"
7383                      }
7384                    ]
7385                  },
7386                  "skipFiles": {
7387                    "default": ["${/**"],
7388                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
7389                    "type": "array"
7390                  },
7391                  "smartStep": {
7392                    "default": true,
7393                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
7394                    "type": "boolean"
7395                  },
7396                  "sourceMapPathOverrides": {
7397                    "default": {
7398                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
7399                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
7400                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
7401                    },
7402                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
7403                    "type": "object"
7404                  },
7405                  "sourceMapRenames": {
7406                    "default": true,
7407                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
7408                    "type": "boolean"
7409                  },
7410                  "sourceMaps": {
7411                    "default": true,
7412                    "description": "Use JavaScript source maps (if they exist).",
7413                    "type": "boolean"
7414                  },
7415                  "timeout": {
7416                    "default": 10000,
7417                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
7418                    "type": "number"
7419                  },
7420                  "timeouts": {
7421                    "additionalProperties": false,
7422                    "default": {},
7423                    "description": "Timeouts for several debugger operations.",
7424                    "markdownDescription": "Timeouts for several debugger operations.",
7425                    "properties": {
7426                      "hoverEvaluation": {
7427                        "default": 500,
7428                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
7429                        "type": "number"
7430                      },
7431                      "sourceMapCumulativePause": {
7432                        "default": 1000,
7433                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
7434                        "type": "number"
7435                      },
7436                      "sourceMapMinPause": {
7437                        "default": 1000,
7438                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
7439                        "type": "number"
7440                      }
7441                    },
7442                    "type": "object"
7443                  },
7444                  "trace": {
7445                    "default": true,
7446                    "description": "Configures what diagnostic output is produced.",
7447                    "oneOf": [
7448                      {
7449                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
7450                        "type": "boolean"
7451                      },
7452                      {
7453                        "additionalProperties": false,
7454                        "properties": {
7455                          "logFile": {
7456                            "description": "Configures where on disk logs are written.",
7457                            "type": ["string", "null"]
7458                          },
7459                          "stdio": {
7460                            "description": "Whether to return trace data from the launched application or browser.",
7461                            "type": "boolean"
7462                          }
7463                        },
7464                        "type": "object"
7465                      }
7466                    ]
7467                  }
7468                },
7469                "type": "object"
7470              }
7471            ]
7472          },
7473          "showAsyncStacks": {
7474            "default": true,
7475            "description": "Show the async calls that led to the current call stack.",
7476            "oneOf": [
7477              { "type": "boolean" },
7478              {
7479                "properties": { "onAttach": { "default": 32, "type": "number" } },
7480                "required": ["onAttach"],
7481                "type": "object"
7482              },
7483              {
7484                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
7485                "required": ["onceBreakpointResolved"],
7486                "type": "object"
7487              }
7488            ]
7489          },
7490          "skipFiles": {
7491            "default": ["${/**"],
7492            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
7493            "type": "array"
7494          },
7495          "smartStep": {
7496            "default": true,
7497            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
7498            "type": "boolean"
7499          },
7500          "sourceMapPathOverrides": {
7501            "default": {
7502              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
7503              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
7504              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
7505            },
7506            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
7507            "type": "object"
7508          },
7509          "sourceMapRenames": {
7510            "default": true,
7511            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
7512            "type": "boolean"
7513          },
7514          "sourceMaps": {
7515            "default": true,
7516            "description": "Use JavaScript source maps (if they exist).",
7517            "type": "boolean"
7518          },
7519          "targetSelection": {
7520            "default": "automatic",
7521            "enum": ["pick", "automatic"],
7522            "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
7523            "type": "string"
7524          },
7525          "timeout": {
7526            "default": 10000,
7527            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
7528            "type": "number"
7529          },
7530          "timeouts": {
7531            "additionalProperties": false,
7532            "default": {},
7533            "description": "Timeouts for several debugger operations.",
7534            "markdownDescription": "Timeouts for several debugger operations.",
7535            "properties": {
7536              "hoverEvaluation": {
7537                "default": 500,
7538                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
7539                "type": "number"
7540              },
7541              "sourceMapCumulativePause": {
7542                "default": 1000,
7543                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
7544                "type": "number"
7545              },
7546              "sourceMapMinPause": {
7547                "default": 1000,
7548                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
7549                "type": "number"
7550              }
7551            },
7552            "type": "object"
7553          },
7554          "trace": {
7555            "default": true,
7556            "description": "Configures what diagnostic output is produced.",
7557            "oneOf": [
7558              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
7559              {
7560                "additionalProperties": false,
7561                "properties": {
7562                  "logFile": {
7563                    "description": "Configures where on disk logs are written.",
7564                    "type": ["string", "null"]
7565                  },
7566                  "stdio": {
7567                    "description": "Whether to return trace data from the launched application or browser.",
7568                    "type": "boolean"
7569                  }
7570                },
7571                "type": "object"
7572              }
7573            ]
7574          },
7575          "url": {
7576            "default": "http://localhost:8080",
7577            "description": "Will search for a tab with this exact url and attach to it, if found",
7578            "tags": ["setup"],
7579            "type": "string"
7580          },
7581          "urlFilter": {
7582            "default": "",
7583            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
7584            "type": "string"
7585          },
7586          "useWebView": {
7587            "default": { "pipeName": "MyPipeName" },
7588            "description": "An object containing the `pipeName` of a debug pipe for a UWP hosted Webview2. This is the \"MyTestSharedMemory\" when creating the pipe \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\"",
7589            "properties": { "pipeName": { "type": "string" } },
7590            "type": "object"
7591          },
7592          "vueComponentPaths": {
7593            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
7594            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
7595            "type": "array"
7596          },
7597          "webRoot": {
7598            "default": "${ZED_WORKTREE_ROOT}",
7599            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
7600            "tags": ["setup"],
7601            "type": "string"
7602          }
7603        }
7604      }
7605    },
7606    {
7607      "if": {
7608        "properties": { "type": { "const": "msedge" }, "request": { "const": "launch" } },
7609        "required": ["type", "request"]
7610      },
7611      "then": {
7612        "properties": {
7613          "address": {
7614            "default": "localhost",
7615            "description": "When debugging webviews, the IP address or hostname the webview is listening on. Will be automatically discovered if not set.",
7616            "type": "string"
7617          },
7618          "browserLaunchLocation": {
7619            "default": null,
7620            "description": "Forces the browser to be launched in one location. In a remote workspace (through ssh or WSL, for example) this can be used to open the browser on the remote machine rather than locally.",
7621            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
7622          },
7623          "cascadeTerminateToConfigurations": {
7624            "default": [],
7625            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
7626            "items": { "type": "string", "uniqueItems": true },
7627            "type": "array"
7628          },
7629          "cleanUp": {
7630            "default": "wholeBrowser",
7631            "description": "What clean-up to do after the debugging session finishes. Close only the tab being debug, vs. close the whole browser.",
7632            "enum": ["wholeBrowser", "onlyTab"],
7633            "type": "string"
7634          },
7635          "customDescriptionGenerator": {
7636            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
7637            "type": "string"
7638          },
7639          "customPropertiesGenerator": {
7640            "deprecated": true,
7641            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
7642            "type": "string"
7643          },
7644          "cwd": {
7645            "default": null,
7646            "description": "Optional working directory for the runtime executable.",
7647            "type": "string"
7648          },
7649          "disableNetworkCache": {
7650            "default": true,
7651            "description": "Controls whether to skip the network cache for each request",
7652            "type": "boolean"
7653          },
7654          "enableContentValidation": {
7655            "default": true,
7656            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
7657            "type": "boolean"
7658          },
7659          "enableDWARF": {
7660            "default": true,
7661            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
7662            "type": "boolean"
7663          },
7664          "env": {
7665            "default": {},
7666            "description": "Optional dictionary of environment key/value pairs for the browser.",
7667            "type": "object"
7668          },
7669          "file": {
7670            "default": "${ZED_WORKTREE_ROOT}/index.html",
7671            "description": "A local html file to open in the browser",
7672            "tags": ["setup"],
7673            "type": "string"
7674          },
7675          "includeDefaultArgs": {
7676            "default": true,
7677            "description": "Whether default browser launch arguments (to disable features that may make debugging harder) will be included in the launch.",
7678            "type": "boolean"
7679          },
7680          "includeLaunchArgs": {
7681            "default": true,
7682            "description": "Advanced: whether any default launch/debugging arguments are set on the browser. The debugger will assume the browser will use pipe debugging such as that which is provided with `--remote-debugging-pipe`.",
7683            "type": "boolean"
7684          },
7685          "inspectUri": {
7686            "default": null,
7687            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
7688            "type": ["string", "null"]
7689          },
7690          "killBehavior": {
7691            "default": "forceful",
7692            "enum": ["forceful", "polite", "none"],
7693            "markdownDescription": "Configures how browser processes are killed when stopping the session with `cleanUp: wholeBrowser`. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
7694            "type": "string"
7695          },
7696          "outFiles": {
7697            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
7698            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
7699            "items": { "type": "string" },
7700            "tags": ["setup"],
7701            "type": ["array"]
7702          },
7703          "outputCapture": {
7704            "default": "console",
7705            "enum": ["console", "std"],
7706            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
7707          },
7708          "pathMapping": {
7709            "default": {},
7710            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
7711            "type": "object"
7712          },
7713          "pauseForSourceMap": {
7714            "default": false,
7715            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
7716            "type": "boolean"
7717          },
7718          "perScriptSourcemaps": {
7719            "default": "auto",
7720            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
7721            "enum": ["yes", "no", "auto"],
7722            "type": "string"
7723          },
7724          "port": {
7725            "default": 9229,
7726            "description": "When debugging webviews, the port the webview debugger is listening on. Will be automatically discovered if not set.",
7727            "type": "number"
7728          },
7729          "profileStartup": {
7730            "default": true,
7731            "description": "If true, will start profiling soon as the process launches",
7732            "type": "boolean"
7733          },
7734          "resolveSourceMapLocations": {
7735            "default": null,
7736            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
7737            "items": { "type": "string" },
7738            "type": ["array", "null"]
7739          },
7740          "runtimeArgs": {
7741            "default": [],
7742            "description": "Optional arguments passed to the runtime executable.",
7743            "items": { "type": "string" },
7744            "type": "array"
7745          },
7746          "runtimeExecutable": {
7747            "default": "stable",
7748            "description": "Either 'canary', 'stable', 'dev', 'custom' or path to the browser executable. Custom means a custom wrapper, custom build or EDGE_PATH environment variable.",
7749            "type": ["string", "null"]
7750          },
7751          "server": {
7752            "oneOf": [
7753              {
7754                "additionalProperties": false,
7755                "default": { "program": "node my-server.js" },
7756                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
7757                "properties": {
7758                  "args": {
7759                    "default": [],
7760                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
7761                    "items": { "type": "string" },
7762                    "tags": ["setup"],
7763                    "type": ["array", "string"]
7764                  },
7765                  "attachSimplePort": {
7766                    "default": 9229,
7767                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
7768                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
7769                  },
7770                  "autoAttachChildProcesses": {
7771                    "default": true,
7772                    "description": "Attach debugger to new child processes automatically.",
7773                    "type": "boolean"
7774                  },
7775                  "cascadeTerminateToConfigurations": {
7776                    "default": [],
7777                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
7778                    "items": { "type": "string", "uniqueItems": true },
7779                    "type": "array"
7780                  },
7781                  "console": {
7782                    "default": "internalConsole",
7783                    "description": "Where to launch the debug target.",
7784                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
7785                    "enumDescriptions": [
7786                      "VS Code Debug Console (which doesn't support to read input from a program)",
7787                      "VS Code's integrated terminal",
7788                      "External terminal that can be configured via user settings"
7789                    ],
7790                    "type": "string"
7791                  },
7792                  "customDescriptionGenerator": {
7793                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
7794                    "type": "string"
7795                  },
7796                  "customPropertiesGenerator": {
7797                    "deprecated": true,
7798                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
7799                    "type": "string"
7800                  },
7801                  "cwd": {
7802                    "default": "${ZED_WORKTREE_ROOT}",
7803                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
7804                    "tags": ["setup"],
7805                    "type": "string"
7806                  },
7807                  "enableContentValidation": {
7808                    "default": true,
7809                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
7810                    "type": "boolean"
7811                  },
7812                  "enableDWARF": {
7813                    "default": true,
7814                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
7815                    "type": "boolean"
7816                  },
7817                  "env": {
7818                    "additionalProperties": { "type": ["string", "null"] },
7819                    "default": {},
7820                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
7821                    "tags": ["setup"],
7822                    "type": "object"
7823                  },
7824                  "envFile": {
7825                    "default": "${ZED_WORKTREE_ROOT}/.env",
7826                    "description": "Absolute path to a file containing environment variable definitions.",
7827                    "type": "string"
7828                  },
7829                  "experimentalNetworking": {
7830                    "default": "auto",
7831                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
7832                    "enum": ["auto", "on", "off"],
7833                    "type": "string"
7834                  },
7835                  "killBehavior": {
7836                    "default": "forceful",
7837                    "enum": ["forceful", "polite", "none"],
7838                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
7839                    "type": "string"
7840                  },
7841                  "localRoot": {
7842                    "default": null,
7843                    "description": "Path to the local directory containing the program.",
7844                    "type": ["string", "null"]
7845                  },
7846                  "nodeVersionHint": {
7847                    "default": 12,
7848                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
7849                    "minimum": 8,
7850                    "type": "number"
7851                  },
7852                  "outFiles": {
7853                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
7854                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
7855                    "items": { "type": "string" },
7856                    "tags": ["setup"],
7857                    "type": ["array"]
7858                  },
7859                  "outputCapture": {
7860                    "default": "console",
7861                    "enum": ["console", "std"],
7862                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
7863                  },
7864                  "pauseForSourceMap": {
7865                    "default": false,
7866                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
7867                    "type": "boolean"
7868                  },
7869                  "profileStartup": {
7870                    "default": true,
7871                    "description": "If true, will start profiling as soon as the process launches",
7872                    "type": "boolean"
7873                  },
7874                  "program": {
7875                    "default": "",
7876                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
7877                    "tags": ["setup"],
7878                    "type": "string"
7879                  },
7880                  "remoteRoot": {
7881                    "default": null,
7882                    "description": "Absolute path to the remote directory containing the program.",
7883                    "type": ["string", "null"]
7884                  },
7885                  "resolveSourceMapLocations": {
7886                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
7887                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
7888                    "items": { "type": "string" },
7889                    "type": ["array", "null"]
7890                  },
7891                  "restart": {
7892                    "default": true,
7893                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
7894                    "oneOf": [
7895                      { "type": "boolean" },
7896                      {
7897                        "properties": {
7898                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
7899                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
7900                        },
7901                        "type": "object"
7902                      }
7903                    ]
7904                  },
7905                  "runtimeArgs": {
7906                    "default": [],
7907                    "description": "Optional arguments passed to the runtime executable.",
7908                    "items": { "type": "string" },
7909                    "tags": ["setup"],
7910                    "type": "array"
7911                  },
7912                  "runtimeExecutable": {
7913                    "default": "node",
7914                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
7915                    "type": ["string", "null"]
7916                  },
7917                  "runtimeSourcemapPausePatterns": {
7918                    "default": [],
7919                    "items": { "type": "string" },
7920                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
7921                    "type": "array"
7922                  },
7923                  "runtimeVersion": {
7924                    "default": "default",
7925                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
7926                    "type": "string"
7927                  },
7928                  "showAsyncStacks": {
7929                    "default": true,
7930                    "description": "Show the async calls that led to the current call stack.",
7931                    "oneOf": [
7932                      { "type": "boolean" },
7933                      {
7934                        "properties": { "onAttach": { "default": 32, "type": "number" } },
7935                        "required": ["onAttach"],
7936                        "type": "object"
7937                      },
7938                      {
7939                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
7940                        "required": ["onceBreakpointResolved"],
7941                        "type": "object"
7942                      }
7943                    ]
7944                  },
7945                  "skipFiles": {
7946                    "default": ["${/**"],
7947                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
7948                    "type": "array"
7949                  },
7950                  "smartStep": {
7951                    "default": true,
7952                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
7953                    "type": "boolean"
7954                  },
7955                  "sourceMapPathOverrides": {
7956                    "default": {
7957                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
7958                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
7959                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
7960                    },
7961                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
7962                    "type": "object"
7963                  },
7964                  "sourceMapRenames": {
7965                    "default": true,
7966                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
7967                    "type": "boolean"
7968                  },
7969                  "sourceMaps": {
7970                    "default": true,
7971                    "description": "Use JavaScript source maps (if they exist).",
7972                    "type": "boolean"
7973                  },
7974                  "stopOnEntry": {
7975                    "default": true,
7976                    "description": "Automatically stop program after launch.",
7977                    "type": ["boolean", "string"]
7978                  },
7979                  "timeout": {
7980                    "default": 10000,
7981                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
7982                    "type": "number"
7983                  },
7984                  "timeouts": {
7985                    "additionalProperties": false,
7986                    "default": {},
7987                    "description": "Timeouts for several debugger operations.",
7988                    "markdownDescription": "Timeouts for several debugger operations.",
7989                    "properties": {
7990                      "hoverEvaluation": {
7991                        "default": 500,
7992                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
7993                        "type": "number"
7994                      },
7995                      "sourceMapCumulativePause": {
7996                        "default": 1000,
7997                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
7998                        "type": "number"
7999                      },
8000                      "sourceMapMinPause": {
8001                        "default": 1000,
8002                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
8003                        "type": "number"
8004                      }
8005                    },
8006                    "type": "object"
8007                  },
8008                  "trace": {
8009                    "default": true,
8010                    "description": "Configures what diagnostic output is produced.",
8011                    "oneOf": [
8012                      {
8013                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
8014                        "type": "boolean"
8015                      },
8016                      {
8017                        "additionalProperties": false,
8018                        "properties": {
8019                          "logFile": {
8020                            "description": "Configures where on disk logs are written.",
8021                            "type": ["string", "null"]
8022                          },
8023                          "stdio": {
8024                            "description": "Whether to return trace data from the launched application or browser.",
8025                            "type": "boolean"
8026                          }
8027                        },
8028                        "type": "object"
8029                      }
8030                    ]
8031                  }
8032                },
8033                "type": "object"
8034              },
8035              {
8036                "additionalProperties": false,
8037                "default": { "program": "npm start" },
8038                "description": "JavaScript Debug Terminal",
8039                "properties": {
8040                  "autoAttachChildProcesses": {
8041                    "default": true,
8042                    "description": "Attach debugger to new child processes automatically.",
8043                    "type": "boolean"
8044                  },
8045                  "cascadeTerminateToConfigurations": {
8046                    "default": [],
8047                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
8048                    "items": { "type": "string", "uniqueItems": true },
8049                    "type": "array"
8050                  },
8051                  "command": {
8052                    "default": "npm start",
8053                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
8054                    "tags": ["setup"],
8055                    "type": ["string", "null"]
8056                  },
8057                  "customDescriptionGenerator": {
8058                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
8059                    "type": "string"
8060                  },
8061                  "customPropertiesGenerator": {
8062                    "deprecated": true,
8063                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
8064                    "type": "string"
8065                  },
8066                  "cwd": {
8067                    "default": "${ZED_WORKTREE_ROOT}",
8068                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
8069                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
8070                    "tags": ["setup"],
8071                    "type": "string"
8072                  },
8073                  "enableContentValidation": {
8074                    "default": true,
8075                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
8076                    "type": "boolean"
8077                  },
8078                  "enableDWARF": {
8079                    "default": true,
8080                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
8081                    "type": "boolean"
8082                  },
8083                  "env": {
8084                    "additionalProperties": { "type": ["string", "null"] },
8085                    "default": {},
8086                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
8087                    "tags": ["setup"],
8088                    "type": "object"
8089                  },
8090                  "envFile": {
8091                    "default": "${ZED_WORKTREE_ROOT}/.env",
8092                    "description": "Absolute path to a file containing environment variable definitions.",
8093                    "type": "string"
8094                  },
8095                  "localRoot": {
8096                    "default": null,
8097                    "description": "Path to the local directory containing the program.",
8098                    "type": ["string", "null"]
8099                  },
8100                  "nodeVersionHint": {
8101                    "default": 12,
8102                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
8103                    "minimum": 8,
8104                    "type": "number"
8105                  },
8106                  "outFiles": {
8107                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
8108                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
8109                    "items": { "type": "string" },
8110                    "tags": ["setup"],
8111                    "type": ["array"]
8112                  },
8113                  "outputCapture": {
8114                    "default": "console",
8115                    "enum": ["console", "std"],
8116                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
8117                  },
8118                  "pauseForSourceMap": {
8119                    "default": false,
8120                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
8121                    "type": "boolean"
8122                  },
8123                  "remoteRoot": {
8124                    "default": null,
8125                    "description": "Absolute path to the remote directory containing the program.",
8126                    "type": ["string", "null"]
8127                  },
8128                  "resolveSourceMapLocations": {
8129                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
8130                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
8131                    "items": { "type": "string" },
8132                    "type": ["array", "null"]
8133                  },
8134                  "runtimeSourcemapPausePatterns": {
8135                    "default": [],
8136                    "items": { "type": "string" },
8137                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
8138                    "type": "array"
8139                  },
8140                  "showAsyncStacks": {
8141                    "default": true,
8142                    "description": "Show the async calls that led to the current call stack.",
8143                    "oneOf": [
8144                      { "type": "boolean" },
8145                      {
8146                        "properties": { "onAttach": { "default": 32, "type": "number" } },
8147                        "required": ["onAttach"],
8148                        "type": "object"
8149                      },
8150                      {
8151                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
8152                        "required": ["onceBreakpointResolved"],
8153                        "type": "object"
8154                      }
8155                    ]
8156                  },
8157                  "skipFiles": {
8158                    "default": ["${/**"],
8159                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
8160                    "type": "array"
8161                  },
8162                  "smartStep": {
8163                    "default": true,
8164                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
8165                    "type": "boolean"
8166                  },
8167                  "sourceMapPathOverrides": {
8168                    "default": {
8169                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
8170                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
8171                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
8172                    },
8173                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
8174                    "type": "object"
8175                  },
8176                  "sourceMapRenames": {
8177                    "default": true,
8178                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
8179                    "type": "boolean"
8180                  },
8181                  "sourceMaps": {
8182                    "default": true,
8183                    "description": "Use JavaScript source maps (if they exist).",
8184                    "type": "boolean"
8185                  },
8186                  "timeout": {
8187                    "default": 10000,
8188                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
8189                    "type": "number"
8190                  },
8191                  "timeouts": {
8192                    "additionalProperties": false,
8193                    "default": {},
8194                    "description": "Timeouts for several debugger operations.",
8195                    "markdownDescription": "Timeouts for several debugger operations.",
8196                    "properties": {
8197                      "hoverEvaluation": {
8198                        "default": 500,
8199                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
8200                        "type": "number"
8201                      },
8202                      "sourceMapCumulativePause": {
8203                        "default": 1000,
8204                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
8205                        "type": "number"
8206                      },
8207                      "sourceMapMinPause": {
8208                        "default": 1000,
8209                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
8210                        "type": "number"
8211                      }
8212                    },
8213                    "type": "object"
8214                  },
8215                  "trace": {
8216                    "default": true,
8217                    "description": "Configures what diagnostic output is produced.",
8218                    "oneOf": [
8219                      {
8220                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
8221                        "type": "boolean"
8222                      },
8223                      {
8224                        "additionalProperties": false,
8225                        "properties": {
8226                          "logFile": {
8227                            "description": "Configures where on disk logs are written.",
8228                            "type": ["string", "null"]
8229                          },
8230                          "stdio": {
8231                            "description": "Whether to return trace data from the launched application or browser.",
8232                            "type": "boolean"
8233                          }
8234                        },
8235                        "type": "object"
8236                      }
8237                    ]
8238                  }
8239                },
8240                "type": "object"
8241              }
8242            ]
8243          },
8244          "showAsyncStacks": {
8245            "default": true,
8246            "description": "Show the async calls that led to the current call stack.",
8247            "oneOf": [
8248              { "type": "boolean" },
8249              {
8250                "properties": { "onAttach": { "default": 32, "type": "number" } },
8251                "required": ["onAttach"],
8252                "type": "object"
8253              },
8254              {
8255                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
8256                "required": ["onceBreakpointResolved"],
8257                "type": "object"
8258              }
8259            ]
8260          },
8261          "skipFiles": {
8262            "default": ["${/**"],
8263            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
8264            "type": "array"
8265          },
8266          "smartStep": {
8267            "default": true,
8268            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
8269            "type": "boolean"
8270          },
8271          "sourceMapPathOverrides": {
8272            "default": {
8273              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
8274              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
8275              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
8276            },
8277            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
8278            "type": "object"
8279          },
8280          "sourceMapRenames": {
8281            "default": true,
8282            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
8283            "type": "boolean"
8284          },
8285          "sourceMaps": {
8286            "default": true,
8287            "description": "Use JavaScript source maps (if they exist).",
8288            "type": "boolean"
8289          },
8290          "timeout": {
8291            "default": 10000,
8292            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
8293            "type": "number"
8294          },
8295          "timeouts": {
8296            "additionalProperties": false,
8297            "default": {},
8298            "description": "Timeouts for several debugger operations.",
8299            "markdownDescription": "Timeouts for several debugger operations.",
8300            "properties": {
8301              "hoverEvaluation": {
8302                "default": 500,
8303                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
8304                "type": "number"
8305              },
8306              "sourceMapCumulativePause": {
8307                "default": 1000,
8308                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
8309                "type": "number"
8310              },
8311              "sourceMapMinPause": {
8312                "default": 1000,
8313                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
8314                "type": "number"
8315              }
8316            },
8317            "type": "object"
8318          },
8319          "trace": {
8320            "default": true,
8321            "description": "Configures what diagnostic output is produced.",
8322            "oneOf": [
8323              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
8324              {
8325                "additionalProperties": false,
8326                "properties": {
8327                  "logFile": {
8328                    "description": "Configures where on disk logs are written.",
8329                    "type": ["string", "null"]
8330                  },
8331                  "stdio": {
8332                    "description": "Whether to return trace data from the launched application or browser.",
8333                    "type": "boolean"
8334                  }
8335                },
8336                "type": "object"
8337              }
8338            ]
8339          },
8340          "url": {
8341            "default": "http://localhost:8080",
8342            "description": "Will search for a tab with this exact url and attach to it, if found",
8343            "tags": ["setup"],
8344            "type": "string"
8345          },
8346          "urlFilter": {
8347            "default": "",
8348            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
8349            "type": "string"
8350          },
8351          "useWebView": {
8352            "default": false,
8353            "description": "When 'true', the debugger will treat the runtime executable as a host application that contains a WebView allowing you to debug the WebView script content.",
8354            "type": "boolean"
8355          },
8356          "userDataDir": {
8357            "default": true,
8358            "description": "By default, the browser is launched with a separate user profile in a temp folder. Use this option to override it. Set to false to launch with your default user profile. A new browser can't be launched if an instance is already running from `userDataDir`.",
8359            "type": ["string", "boolean"]
8360          },
8361          "vueComponentPaths": {
8362            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
8363            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
8364            "type": "array"
8365          },
8366          "webRoot": {
8367            "default": "${ZED_WORKTREE_ROOT}",
8368            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
8369            "tags": ["setup"],
8370            "type": "string"
8371          }
8372        }
8373      }
8374    },
8375    {
8376      "if": {
8377        "properties": { "type": { "const": "msedge" }, "request": { "const": "attach" } },
8378        "required": ["type", "request"]
8379      },
8380      "then": {
8381        "properties": {
8382          "address": {
8383            "default": "localhost",
8384            "description": "IP address or hostname the debugged browser is listening on.",
8385            "type": "string"
8386          },
8387          "browserAttachLocation": {
8388            "default": null,
8389            "description": "Forces the browser to attach in one location. In a remote workspace (through ssh or WSL, for example) this can be used to attach to a browser on the remote machine rather than locally.",
8390            "oneOf": [{ "type": "null" }, { "enum": ["ui", "workspace"], "type": "string" }]
8391          },
8392          "cascadeTerminateToConfigurations": {
8393            "default": [],
8394            "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
8395            "items": { "type": "string", "uniqueItems": true },
8396            "type": "array"
8397          },
8398          "customDescriptionGenerator": {
8399            "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
8400            "type": "string"
8401          },
8402          "customPropertiesGenerator": {
8403            "deprecated": true,
8404            "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
8405            "type": "string"
8406          },
8407          "disableNetworkCache": {
8408            "default": true,
8409            "description": "Controls whether to skip the network cache for each request",
8410            "type": "boolean"
8411          },
8412          "enableContentValidation": {
8413            "default": true,
8414            "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
8415            "type": "boolean"
8416          },
8417          "enableDWARF": {
8418            "default": true,
8419            "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
8420            "type": "boolean"
8421          },
8422          "inspectUri": {
8423            "default": null,
8424            "description": "Format to use to rewrite the inspectUri: It's a template string that interpolates keys in `{curlyBraces}`. Available keys are:\n - `url.*` is the parsed address of the running application. For instance, `{url.port}`, `{url.hostname}`\n - `port` is the debug port that Chrome is listening on.\n - `browserInspectUri` is the inspector URI on the launched browser\n - `browserInspectUriPath` is the path part of the inspector URI on the launched browser (e.g.: \"/devtools/browser/e9ec0098-306e-472a-8133-5e42488929c2\").\n - `wsProtocol` is the hinted websocket protocol. This is set to `wss` if the original URL is `https`, or `ws` otherwise.\n",
8425            "type": ["string", "null"]
8426          },
8427          "outFiles": {
8428            "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
8429            "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
8430            "items": { "type": "string" },
8431            "tags": ["setup"],
8432            "type": ["array"]
8433          },
8434          "outputCapture": {
8435            "default": "console",
8436            "enum": ["console", "std"],
8437            "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
8438          },
8439          "pathMapping": {
8440            "default": {},
8441            "description": "A mapping of URLs/paths to local folders, to resolve scripts in the Browser to scripts on disk",
8442            "type": "object"
8443          },
8444          "pauseForSourceMap": {
8445            "default": false,
8446            "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
8447            "type": "boolean"
8448          },
8449          "perScriptSourcemaps": {
8450            "default": "auto",
8451            "description": "Whether scripts are loaded individually with unique sourcemaps containing the basename of the source file. This can be set to optimize sourcemap handling when dealing with lots of small scripts. If set to \"auto\", we'll detect known cases where this is appropriate.",
8452            "enum": ["yes", "no", "auto"],
8453            "type": "string"
8454          },
8455          "port": {
8456            "default": 9229,
8457            "description": "Port to use to remote debugging the browser, given as `--remote-debugging-port` when launching the browser.",
8458            "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }],
8459            "tags": ["setup"]
8460          },
8461          "resolveSourceMapLocations": {
8462            "default": null,
8463            "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
8464            "items": { "type": "string" },
8465            "type": ["array", "null"]
8466          },
8467          "restart": {
8468            "default": false,
8469            "markdownDescription": "Whether to reconnect if the browser connection is closed",
8470            "type": "boolean"
8471          },
8472          "server": {
8473            "oneOf": [
8474              {
8475                "additionalProperties": false,
8476                "default": { "program": "node my-server.js" },
8477                "description": "Configures a web server to start up. Takes the same configuration as the 'node' launch task.",
8478                "properties": {
8479                  "args": {
8480                    "default": [],
8481                    "description": "Command line arguments passed to the program.\n\nCan be an array of strings or a single string. When the program is launched in a terminal, setting this property to a single string will result in the arguments not being escaped for the shell.",
8482                    "items": { "type": "string" },
8483                    "tags": ["setup"],
8484                    "type": ["array", "string"]
8485                  },
8486                  "attachSimplePort": {
8487                    "default": 9229,
8488                    "description": "If set, attaches to the process via the given port. This is generally no longer necessary for Node.js programs and loses the ability to debug child processes, but can be useful in more esoteric scenarios such as with Deno and Docker launches. If set to 0, a random port will be chosen and --inspect-brk added to the launch arguments automatically.",
8489                    "oneOf": [{ "type": "integer" }, { "pattern": "^\\${.*}$", "type": "string" }]
8490                  },
8491                  "autoAttachChildProcesses": {
8492                    "default": true,
8493                    "description": "Attach debugger to new child processes automatically.",
8494                    "type": "boolean"
8495                  },
8496                  "cascadeTerminateToConfigurations": {
8497                    "default": [],
8498                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
8499                    "items": { "type": "string", "uniqueItems": true },
8500                    "type": "array"
8501                  },
8502                  "console": {
8503                    "default": "internalConsole",
8504                    "description": "Where to launch the debug target.",
8505                    "enum": ["internalConsole", "integratedTerminal", "externalTerminal"],
8506                    "enumDescriptions": [
8507                      "VS Code Debug Console (which doesn't support to read input from a program)",
8508                      "VS Code's integrated terminal",
8509                      "External terminal that can be configured via user settings"
8510                    ],
8511                    "type": "string"
8512                  },
8513                  "customDescriptionGenerator": {
8514                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
8515                    "type": "string"
8516                  },
8517                  "customPropertiesGenerator": {
8518                    "deprecated": true,
8519                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
8520                    "type": "string"
8521                  },
8522                  "cwd": {
8523                    "default": "${ZED_WORKTREE_ROOT}",
8524                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
8525                    "tags": ["setup"],
8526                    "type": "string"
8527                  },
8528                  "enableContentValidation": {
8529                    "default": true,
8530                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
8531                    "type": "boolean"
8532                  },
8533                  "enableDWARF": {
8534                    "default": true,
8535                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
8536                    "type": "boolean"
8537                  },
8538                  "env": {
8539                    "additionalProperties": { "type": ["string", "null"] },
8540                    "default": {},
8541                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
8542                    "tags": ["setup"],
8543                    "type": "object"
8544                  },
8545                  "envFile": {
8546                    "default": "${ZED_WORKTREE_ROOT}/.env",
8547                    "description": "Absolute path to a file containing environment variable definitions.",
8548                    "type": "string"
8549                  },
8550                  "experimentalNetworking": {
8551                    "default": "auto",
8552                    "description": "Enable experimental inspection in Node.js. When set to `auto` this is enabled for versions of Node.js that support it. It can be set to `on` or `off` to enable or disable it explicitly.",
8553                    "enum": ["auto", "on", "off"],
8554                    "type": "string"
8555                  },
8556                  "killBehavior": {
8557                    "default": "forceful",
8558                    "enum": ["forceful", "polite", "none"],
8559                    "markdownDescription": "Configures how debug processes are killed when stopping the session. Can be:\n\n- forceful (default): forcefully tears down the process tree. Sends SIGKILL on posix, or `taskkill.exe /F` on Windows.\n- polite: gracefully tears down the process tree. It's possible that misbehaving processes continue to run after shutdown in this way. Sends SIGTERM on posix, or `taskkill.exe` with no `/F` (force) flag on Windows.\n- none: no termination will happen.",
8560                    "type": "string"
8561                  },
8562                  "localRoot": {
8563                    "default": null,
8564                    "description": "Path to the local directory containing the program.",
8565                    "type": ["string", "null"]
8566                  },
8567                  "nodeVersionHint": {
8568                    "default": 12,
8569                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
8570                    "minimum": 8,
8571                    "type": "number"
8572                  },
8573                  "outFiles": {
8574                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
8575                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
8576                    "items": { "type": "string" },
8577                    "tags": ["setup"],
8578                    "type": ["array"]
8579                  },
8580                  "outputCapture": {
8581                    "default": "console",
8582                    "enum": ["console", "std"],
8583                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
8584                  },
8585                  "pauseForSourceMap": {
8586                    "default": false,
8587                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
8588                    "type": "boolean"
8589                  },
8590                  "profileStartup": {
8591                    "default": true,
8592                    "description": "If true, will start profiling as soon as the process launches",
8593                    "type": "boolean"
8594                  },
8595                  "program": {
8596                    "default": "",
8597                    "description": "Absolute path to the program. Generated value is guessed by looking at package.json and opened files. Edit this attribute.",
8598                    "tags": ["setup"],
8599                    "type": "string"
8600                  },
8601                  "remoteRoot": {
8602                    "default": null,
8603                    "description": "Absolute path to the remote directory containing the program.",
8604                    "type": ["string", "null"]
8605                  },
8606                  "resolveSourceMapLocations": {
8607                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
8608                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
8609                    "items": { "type": "string" },
8610                    "type": ["array", "null"]
8611                  },
8612                  "restart": {
8613                    "default": true,
8614                    "description": "Try to reconnect to the program if we lose connection. If set to `true`, we'll try once a second, forever. You can customize the interval and maximum number of attempts by specifying the `delay` and `maxAttempts` in an object instead.",
8615                    "oneOf": [
8616                      { "type": "boolean" },
8617                      {
8618                        "properties": {
8619                          "delay": { "default": 1000, "minimum": 0, "type": "number" },
8620                          "maxAttempts": { "default": 10, "minimum": 0, "type": "number" }
8621                        },
8622                        "type": "object"
8623                      }
8624                    ]
8625                  },
8626                  "runtimeArgs": {
8627                    "default": [],
8628                    "description": "Optional arguments passed to the runtime executable.",
8629                    "items": { "type": "string" },
8630                    "tags": ["setup"],
8631                    "type": "array"
8632                  },
8633                  "runtimeExecutable": {
8634                    "default": "node",
8635                    "markdownDescription": "Runtime to use. Either an absolute path or the name of a runtime available on the PATH. If omitted `node` is assumed.",
8636                    "type": ["string", "null"]
8637                  },
8638                  "runtimeSourcemapPausePatterns": {
8639                    "default": [],
8640                    "items": { "type": "string" },
8641                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
8642                    "type": "array"
8643                  },
8644                  "runtimeVersion": {
8645                    "default": "default",
8646                    "markdownDescription": "Version of `node` runtime to use. Requires `nvm`.",
8647                    "type": "string"
8648                  },
8649                  "showAsyncStacks": {
8650                    "default": true,
8651                    "description": "Show the async calls that led to the current call stack.",
8652                    "oneOf": [
8653                      { "type": "boolean" },
8654                      {
8655                        "properties": { "onAttach": { "default": 32, "type": "number" } },
8656                        "required": ["onAttach"],
8657                        "type": "object"
8658                      },
8659                      {
8660                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
8661                        "required": ["onceBreakpointResolved"],
8662                        "type": "object"
8663                      }
8664                    ]
8665                  },
8666                  "skipFiles": {
8667                    "default": ["${/**"],
8668                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
8669                    "type": "array"
8670                  },
8671                  "smartStep": {
8672                    "default": true,
8673                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
8674                    "type": "boolean"
8675                  },
8676                  "sourceMapPathOverrides": {
8677                    "default": {
8678                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
8679                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
8680                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
8681                    },
8682                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
8683                    "type": "object"
8684                  },
8685                  "sourceMapRenames": {
8686                    "default": true,
8687                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
8688                    "type": "boolean"
8689                  },
8690                  "sourceMaps": {
8691                    "default": true,
8692                    "description": "Use JavaScript source maps (if they exist).",
8693                    "type": "boolean"
8694                  },
8695                  "stopOnEntry": {
8696                    "default": true,
8697                    "description": "Automatically stop program after launch.",
8698                    "type": ["boolean", "string"]
8699                  },
8700                  "timeout": {
8701                    "default": 10000,
8702                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
8703                    "type": "number"
8704                  },
8705                  "timeouts": {
8706                    "additionalProperties": false,
8707                    "default": {},
8708                    "description": "Timeouts for several debugger operations.",
8709                    "markdownDescription": "Timeouts for several debugger operations.",
8710                    "properties": {
8711                      "hoverEvaluation": {
8712                        "default": 500,
8713                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
8714                        "type": "number"
8715                      },
8716                      "sourceMapCumulativePause": {
8717                        "default": 1000,
8718                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
8719                        "type": "number"
8720                      },
8721                      "sourceMapMinPause": {
8722                        "default": 1000,
8723                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
8724                        "type": "number"
8725                      }
8726                    },
8727                    "type": "object"
8728                  },
8729                  "trace": {
8730                    "default": true,
8731                    "description": "Configures what diagnostic output is produced.",
8732                    "oneOf": [
8733                      {
8734                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
8735                        "type": "boolean"
8736                      },
8737                      {
8738                        "additionalProperties": false,
8739                        "properties": {
8740                          "logFile": {
8741                            "description": "Configures where on disk logs are written.",
8742                            "type": ["string", "null"]
8743                          },
8744                          "stdio": {
8745                            "description": "Whether to return trace data from the launched application or browser.",
8746                            "type": "boolean"
8747                          }
8748                        },
8749                        "type": "object"
8750                      }
8751                    ]
8752                  }
8753                },
8754                "type": "object"
8755              },
8756              {
8757                "additionalProperties": false,
8758                "default": { "program": "npm start" },
8759                "description": "JavaScript Debug Terminal",
8760                "properties": {
8761                  "autoAttachChildProcesses": {
8762                    "default": true,
8763                    "description": "Attach debugger to new child processes automatically.",
8764                    "type": "boolean"
8765                  },
8766                  "cascadeTerminateToConfigurations": {
8767                    "default": [],
8768                    "description": "A list of debug sessions which, when this debug session is terminated, will also be stopped.",
8769                    "items": { "type": "string", "uniqueItems": true },
8770                    "type": "array"
8771                  },
8772                  "command": {
8773                    "default": "npm start",
8774                    "description": "Command to run in the launched terminal. If not provided, the terminal will open without launching a program.",
8775                    "tags": ["setup"],
8776                    "type": ["string", "null"]
8777                  },
8778                  "customDescriptionGenerator": {
8779                    "description": "Customize the textual description the debugger shows for objects (local variables, etc...). Samples:\n      1. this.toString() // will call toString to print all objects\n      2. this.customDescription ? this.customDescription() : defaultValue // Use customDescription method if available, if not return defaultValue\n      3. function (def) { return this.customDescription ? this.customDescription() : def } // Use customDescription method if available, if not return defaultValue\n      ",
8780                    "type": "string"
8781                  },
8782                  "customPropertiesGenerator": {
8783                    "deprecated": true,
8784                    "description": "Customize the properties shown for an object in the debugger (local variables, etc...). Samples:\n    1. { ...this, extraProperty: '12345' } // Add an extraProperty 12345 to all objects\n    2. this.customProperties ? this.customProperties() : this // Use customProperties method if available, if not use the properties in this (the default properties)\n    3. function () { return this.customProperties ? this.customProperties() : this } // Use customDescription method if available, if not return the default properties\n\n    Deprecated: This is a temporary implementation of this feature until we have time to implement it in the way described here: https://github.com/microsoft/vscode/issues/102181",
8785                    "type": "string"
8786                  },
8787                  "cwd": {
8788                    "default": "${ZED_WORKTREE_ROOT}",
8789                    "description": "Absolute path to the working directory of the program being debugged. If you've set localRoot then cwd will match that value otherwise it falls back to your workspaceFolder",
8790                    "docDefault": "localRoot || ${ZED_WORKTREE_ROOT}",
8791                    "tags": ["setup"],
8792                    "type": "string"
8793                  },
8794                  "enableContentValidation": {
8795                    "default": true,
8796                    "description": "Toggles whether we verify the contents of files on disk match the ones loaded in the runtime. This is useful in a variety of scenarios and required in some, but can cause issues if you have server-side transformation of scripts, for example.",
8797                    "type": "boolean"
8798                  },
8799                  "enableDWARF": {
8800                    "default": true,
8801                    "markdownDescription": "Toggles whether the debugger will try to read DWARF debug symbols from WebAssembly, which can be resource intensive. Requires the `ms-vscode.wasm-dwarf-debugging` extension to function.",
8802                    "type": "boolean"
8803                  },
8804                  "env": {
8805                    "additionalProperties": { "type": ["string", "null"] },
8806                    "default": {},
8807                    "markdownDescription": "Environment variables passed to the program. The value `null` removes the variable from the environment.",
8808                    "tags": ["setup"],
8809                    "type": "object"
8810                  },
8811                  "envFile": {
8812                    "default": "${ZED_WORKTREE_ROOT}/.env",
8813                    "description": "Absolute path to a file containing environment variable definitions.",
8814                    "type": "string"
8815                  },
8816                  "localRoot": {
8817                    "default": null,
8818                    "description": "Path to the local directory containing the program.",
8819                    "type": ["string", "null"]
8820                  },
8821                  "nodeVersionHint": {
8822                    "default": 12,
8823                    "description": "Allows you to explicitly specify the Node version that's running, which can be used to disable or enable certain behaviors in cases where the automatic version detection does not work.",
8824                    "minimum": 8,
8825                    "type": "number"
8826                  },
8827                  "outFiles": {
8828                    "default": ["${ZED_WORKTREE_ROOT}/**/*.(m|c|)js", "!**/node_modules/**"],
8829                    "description": "If source maps are enabled, these glob patterns specify the generated JavaScript files. If a pattern starts with `!` the files are excluded. If not specified, the generated code is expected in the same directory as its source.",
8830                    "items": { "type": "string" },
8831                    "tags": ["setup"],
8832                    "type": ["array"]
8833                  },
8834                  "outputCapture": {
8835                    "default": "console",
8836                    "enum": ["console", "std"],
8837                    "markdownDescription": "From where to capture output messages: the default debug API if set to `console`, or stdout/stderr streams if set to `std`."
8838                  },
8839                  "pauseForSourceMap": {
8840                    "default": false,
8841                    "markdownDescription": "Whether to wait for source maps to load for each incoming script. This has a performance overhead, and might be safely disabled when running off of disk, so long as `rootPath` is not disabled.",
8842                    "type": "boolean"
8843                  },
8844                  "remoteRoot": {
8845                    "default": null,
8846                    "description": "Absolute path to the remote directory containing the program.",
8847                    "type": ["string", "null"]
8848                  },
8849                  "resolveSourceMapLocations": {
8850                    "default": ["${ZED_WORKTREE_ROOT}/**", "!**/node_modules/**"],
8851                    "description": "A list of minimatch patterns for locations (folders and URLs) in which source maps can be used to resolve local files. This can be used to avoid incorrectly breaking in external source mapped code. Patterns can be prefixed with \"!\" to exclude them. May be set to an empty array or null to avoid restriction.",
8852                    "items": { "type": "string" },
8853                    "type": ["array", "null"]
8854                  },
8855                  "runtimeSourcemapPausePatterns": {
8856                    "default": [],
8857                    "items": { "type": "string" },
8858                    "markdownDescription": "A list of patterns at which to manually insert entrypoint breakpoints. This can be useful to give the debugger an opportunity to set breakpoints when using sourcemaps that don't exist or can't be detected before launch, such as [with the Serverless framework](https://github.com/microsoft/vscode-js-debug/issues/492).",
8859                    "type": "array"
8860                  },
8861                  "showAsyncStacks": {
8862                    "default": true,
8863                    "description": "Show the async calls that led to the current call stack.",
8864                    "oneOf": [
8865                      { "type": "boolean" },
8866                      {
8867                        "properties": { "onAttach": { "default": 32, "type": "number" } },
8868                        "required": ["onAttach"],
8869                        "type": "object"
8870                      },
8871                      {
8872                        "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
8873                        "required": ["onceBreakpointResolved"],
8874                        "type": "object"
8875                      }
8876                    ]
8877                  },
8878                  "skipFiles": {
8879                    "default": ["${/**"],
8880                    "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
8881                    "type": "array"
8882                  },
8883                  "smartStep": {
8884                    "default": true,
8885                    "description": "Automatically step through generated code that cannot be mapped back to the original source.",
8886                    "type": "boolean"
8887                  },
8888                  "sourceMapPathOverrides": {
8889                    "default": {
8890                      "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
8891                      "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
8892                      "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
8893                    },
8894                    "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
8895                    "type": "object"
8896                  },
8897                  "sourceMapRenames": {
8898                    "default": true,
8899                    "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
8900                    "type": "boolean"
8901                  },
8902                  "sourceMaps": {
8903                    "default": true,
8904                    "description": "Use JavaScript source maps (if they exist).",
8905                    "type": "boolean"
8906                  },
8907                  "timeout": {
8908                    "default": 10000,
8909                    "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
8910                    "type": "number"
8911                  },
8912                  "timeouts": {
8913                    "additionalProperties": false,
8914                    "default": {},
8915                    "description": "Timeouts for several debugger operations.",
8916                    "markdownDescription": "Timeouts for several debugger operations.",
8917                    "properties": {
8918                      "hoverEvaluation": {
8919                        "default": 500,
8920                        "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
8921                        "type": "number"
8922                      },
8923                      "sourceMapCumulativePause": {
8924                        "default": 1000,
8925                        "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
8926                        "type": "number"
8927                      },
8928                      "sourceMapMinPause": {
8929                        "default": 1000,
8930                        "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
8931                        "type": "number"
8932                      }
8933                    },
8934                    "type": "object"
8935                  },
8936                  "trace": {
8937                    "default": true,
8938                    "description": "Configures what diagnostic output is produced.",
8939                    "oneOf": [
8940                      {
8941                        "description": "Trace may be set to 'true' to write diagnostic logs to the disk.",
8942                        "type": "boolean"
8943                      },
8944                      {
8945                        "additionalProperties": false,
8946                        "properties": {
8947                          "logFile": {
8948                            "description": "Configures where on disk logs are written.",
8949                            "type": ["string", "null"]
8950                          },
8951                          "stdio": {
8952                            "description": "Whether to return trace data from the launched application or browser.",
8953                            "type": "boolean"
8954                          }
8955                        },
8956                        "type": "object"
8957                      }
8958                    ]
8959                  }
8960                },
8961                "type": "object"
8962              }
8963            ]
8964          },
8965          "showAsyncStacks": {
8966            "default": true,
8967            "description": "Show the async calls that led to the current call stack.",
8968            "oneOf": [
8969              { "type": "boolean" },
8970              {
8971                "properties": { "onAttach": { "default": 32, "type": "number" } },
8972                "required": ["onAttach"],
8973                "type": "object"
8974              },
8975              {
8976                "properties": { "onceBreakpointResolved": { "default": 32, "type": "number" } },
8977                "required": ["onceBreakpointResolved"],
8978                "type": "object"
8979              }
8980            ]
8981          },
8982          "skipFiles": {
8983            "default": ["${/**"],
8984            "description": "An array of file or folder names, or path globs, to skip when debugging. Star patterns and negations are allowed, for example, `[\"**/node_modules/**\", \"!**/node_modules/my-module/**\"]`",
8985            "type": "array"
8986          },
8987          "smartStep": {
8988            "default": true,
8989            "description": "Automatically step through generated code that cannot be mapped back to the original source.",
8990            "type": "boolean"
8991          },
8992          "sourceMapPathOverrides": {
8993            "default": {
8994              "meteor://💻app/*": "${ZED_WORKTREE_ROOT}/*",
8995              "webpack:///./~/*": "${ZED_WORKTREE_ROOT}/node_modules/*",
8996              "webpack://?:*/*": "${ZED_WORKTREE_ROOT}/*"
8997            },
8998            "description": "A set of mappings for rewriting the locations of source files from what the sourcemap says, to their locations on disk.",
8999            "type": "object"
9000          },
9001          "sourceMapRenames": {
9002            "default": true,
9003            "description": "Whether to use the \"names\" mapping in sourcemaps. This requires requesting source content, which can be slow with certain debuggers.",
9004            "type": "boolean"
9005          },
9006          "sourceMaps": {
9007            "default": true,
9008            "description": "Use JavaScript source maps (if they exist).",
9009            "type": "boolean"
9010          },
9011          "targetSelection": {
9012            "default": "automatic",
9013            "enum": ["pick", "automatic"],
9014            "markdownDescription": "Whether to attach to all targets that match the URL filter (\"automatic\") or ask to pick one (\"pick\").",
9015            "type": "string"
9016          },
9017          "timeout": {
9018            "default": 10000,
9019            "description": "Retry for this number of milliseconds to connect to Node.js. Default is 10000 ms.",
9020            "type": "number"
9021          },
9022          "timeouts": {
9023            "additionalProperties": false,
9024            "default": {},
9025            "description": "Timeouts for several debugger operations.",
9026            "markdownDescription": "Timeouts for several debugger operations.",
9027            "properties": {
9028              "hoverEvaluation": {
9029                "default": 500,
9030                "description": "Time until value evaluation for hovered symbols is aborted. If set to 0, hover evaluation does never time out.",
9031                "type": "number"
9032              },
9033              "sourceMapCumulativePause": {
9034                "default": 1000,
9035                "description": "Extra time in milliseconds allowed per session to be spent waiting for source-maps to be processed, after the minimum time (sourceMapMinPause) has been exhausted",
9036                "type": "number"
9037              },
9038              "sourceMapMinPause": {
9039                "default": 1000,
9040                "description": "Minimum time in milliseconds spent waiting for each source-map to be processed when a script is being parsed",
9041                "type": "number"
9042              }
9043            },
9044            "type": "object"
9045          },
9046          "trace": {
9047            "default": true,
9048            "description": "Configures what diagnostic output is produced.",
9049            "oneOf": [
9050              { "description": "Trace may be set to 'true' to write diagnostic logs to the disk.", "type": "boolean" },
9051              {
9052                "additionalProperties": false,
9053                "properties": {
9054                  "logFile": {
9055                    "description": "Configures where on disk logs are written.",
9056                    "type": ["string", "null"]
9057                  },
9058                  "stdio": {
9059                    "description": "Whether to return trace data from the launched application or browser.",
9060                    "type": "boolean"
9061                  }
9062                },
9063                "type": "object"
9064              }
9065            ]
9066          },
9067          "url": {
9068            "default": "http://localhost:8080",
9069            "description": "Will search for a tab with this exact url and attach to it, if found",
9070            "tags": ["setup"],
9071            "type": "string"
9072          },
9073          "urlFilter": {
9074            "default": "",
9075            "description": "Will search for a page with this url and attach to it, if found. Can have * wildcards.",
9076            "type": "string"
9077          },
9078          "useWebView": {
9079            "default": { "pipeName": "MyPipeName" },
9080            "description": "An object containing the `pipeName` of a debug pipe for a UWP hosted Webview2. This is the \"MyTestSharedMemory\" when creating the pipe \"\\\\.\\pipe\\LOCAL\\MyTestSharedMemory\"",
9081            "properties": { "pipeName": { "type": "string" } },
9082            "type": "object"
9083          },
9084          "vueComponentPaths": {
9085            "default": ["${ZED_WORKTREE_ROOT}/**/*.vue"],
9086            "description": "A list of file glob patterns to find `*.vue` components. By default, searches the entire workspace. This needs to be specified due to extra lookups that Vue's sourcemaps require in Vue CLI 4. You can disable this special handling by setting this to an empty array.",
9087            "type": "array"
9088          },
9089          "webRoot": {
9090            "default": "${ZED_WORKTREE_ROOT}",
9091            "description": "This specifies the workspace absolute path to the webserver root. Used to resolve paths like `/app.js` to files on disk. Shorthand for a pathMapping for \"/\"",
9092            "tags": ["setup"],
9093            "type": "string"
9094          }
9095        }
9096      }
9097    },
9098    {
9099      "properties": {
9100        "type": {
9101          "enum": [
9102            "pwa-node",
9103            "node",
9104            "node-terminal",
9105            "pwa-extensionHost",
9106            "extensionHost",
9107            "pwa-chrome",
9108            "chrome",
9109            "pwa-msedge",
9110            "msedge"
9111          ]
9112        }
9113      },
9114      "required": ["type"]
9115    }
9116  ]
9117}