mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
ea490e5545
* chore: update electron@25.3.0 * ci: update NodeTool version * chore: update @types/node * add more common types to layers checker * chore: update debian dependencies * chore: update rpm dependencies * fix: use legacy dns result order of Node.js * ci: remove deprecated always-auth npm config Refs npm/cli@72a7eeb * chore: update deb and rpm dependencies * chore: update armhf rpm dependencies * chore: update x64 debian dependencies * chore: update x64 rpm dependencies * chore: update electron@25.3.1 * chore: update electron@25.4.0 * chore: bump distro * chore: bump distro --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
177 lines
6.7 KiB
JSON
177 lines
6.7 KiB
JSON
{
|
|
"name": "debug-server-ready",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"icon": "media/icon.png",
|
|
"activationEvents": [
|
|
"onDebugResolve"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"enabledApiProposals": [
|
|
"terminalDataWriteEvent"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:debug-server-ready",
|
|
"watch": "gulp watch-extension:debug-server-ready"
|
|
},
|
|
"contributes": {
|
|
"debuggers": [
|
|
{
|
|
"type": "*",
|
|
"configurationAttributes": {
|
|
"launch": {
|
|
"properties": {
|
|
"serverReadyAction": {
|
|
"oneOf": [
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "openExternally",
|
|
"killOnServerStop": false
|
|
},
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"openExternally"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.openExternally.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "openExternally"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"uriFormat": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.uriFormat.description%",
|
|
"default": "http://localhost:%s"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "debugWithEdge",
|
|
"pattern": "listening on port ([0-9]+)",
|
|
"uriFormat": "http://localhost:%s",
|
|
"webRoot": "${workspaceFolder}",
|
|
"killOnServerStop": false
|
|
},
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"debugWithChrome",
|
|
"debugWithEdge"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.debugWithChrome.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "debugWithEdge"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"uriFormat": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.uriFormat.description%",
|
|
"default": "http://localhost:%s"
|
|
},
|
|
"webRoot": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.webRoot.description%",
|
|
"default": "${workspaceFolder}"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"markdownDescription": "%debug.server.ready.serverReadyAction.description%",
|
|
"default": {
|
|
"action": "startDebugging",
|
|
"name": "<launch browser config name>",
|
|
"killOnServerStop": false
|
|
},
|
|
"required": [
|
|
"name"
|
|
],
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"enum": [
|
|
"startDebugging"
|
|
],
|
|
"enumDescriptions": [
|
|
"%debug.server.ready.action.startDebugging.description%"
|
|
],
|
|
"markdownDescription": "%debug.server.ready.action.description%",
|
|
"default": "startDebugging"
|
|
},
|
|
"pattern": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.pattern.description%",
|
|
"default": "listening on port ([0-9]+)"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"markdownDescription": "%debug.server.ready.debugConfigName.description%",
|
|
"default": "Launch Browser"
|
|
},
|
|
"killOnServerStop": {
|
|
"type": "boolean",
|
|
"markdownDescription": "%debug.server.ready.killOnServerStop.description%",
|
|
"default": false
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|