mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "debug-auto-launch",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"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": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^10.14.8"
|
|
}
|
|
}
|