Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #182 from Microsoft/nojvek/remote-debug
Browse files Browse the repository at this point in the history
Adding address param help to package.json for launch.json auto-complete
  • Loading branch information
roblourens authored Jun 21, 2016
2 parents 9ba63ee + 5b34b2c commit 0368f76
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/out/src/chromeDebug.js",
"runtimeArgs": ["--harmony"],
"runtimeArgs": ["--harmony"],
"stopOnEntry": false,
"args": [ "--server=4712" ],
"sourceMaps": true,
Expand Down
13 changes: 13 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"version": "0.4.4",
"icon": "images/icon.png",
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"author": {
"name": "Microsoft Corporation"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-chrome-debug"
Expand Down Expand Up @@ -82,6 +85,11 @@
"description": "Port to use for Chrome remote debugging.",
"default": 9222
},
"address" :{
"type": "string",
"description": "TCP/IP address of debug port",
"default": "127.0.0.1"
},
"file": {
"type": "string",
"description": "A local html file to open in the browser",
Expand Down Expand Up @@ -145,6 +153,11 @@
"description": "Port to use for Chrome remote debugging.",
"default": 9222
},
"address" :{
"type": "string",
"description": "TCP/IP address of debug port",
"default": "127.0.0.1"
},
"sourceMaps": {
"type": "boolean",
"description": "Use JavaScript source maps (if they exist).",
Expand Down

0 comments on commit 0368f76

Please sign in to comment.