mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
move auto-attach into new built-in extension; fixes #53586
This commit is contained in:
54
extensions/debug-auto-launch/package.json
Normal file
54
extensions/debug-auto-launch/package.json
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"name": "debug-auto-launch",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
"publisher": "vscode",
|
||||
"engines": {
|
||||
"vscode": "^1.5.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"main": "./out/extension",
|
||||
"scripts": {
|
||||
"compile": "gulp compile-extension:debug-auto-launch",
|
||||
"watch": "gulp watch-extension:debug-auto-launch"
|
||||
},
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"title": "Node debug",
|
||||
"properties": {
|
||||
"debug.node.autoAttach": {
|
||||
"scope": "window",
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"disabled",
|
||||
"on",
|
||||
"off"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%debug.node.autoAttach.disabled.description%",
|
||||
"%debug.node.autoAttach.on.description%",
|
||||
"%debug.node.autoAttach.off.description%"
|
||||
],
|
||||
"description": "%debug.node.autoAttach.description%",
|
||||
"default": "disabled"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "extension.node-debug.toggleAutoAttach",
|
||||
"title": "%toggle.auto.attach%",
|
||||
"category": "Debug"
|
||||
}
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-nls": "^3.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "8.0.33"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user