Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "DOM Debug",
  6. "type": "chrome",
  7. "request": "launch",
  8. "runtimeExecutable": "${workspaceRoot}/nw.exe",
  9. "runtimeArgs": [
  10. "${workspaceRoot}",
  11. "--remote-debugging-port=9222"
  12. ],
  13. "webRoot": "${workspaceRoot}",
  14. "sourceMaps": false,
  15. "diagnosticLogging": true,
  16. "port": 9222
  17. },
  18. {
  19. "name": "Node Debug",
  20. "type": "chrome",
  21. "request": "launch",
  22. "runtimeExecutable": "${workspaceRoot}/nw.exe",
  23. "runtimeArgs": [
  24. "${workspaceRoot}",
  25. "--remote-debugging-port=9222"
  26. ],
  27. "url": "chrome-extension://*/_generated_background_page.html",
  28. "webRoot": "${workspaceRoot}",
  29. "sourceMaps": false,
  30. "diagnosticLogging": true,
  31. "port": 9222
  32. }
  33. ]
  34. }
  35.  
  36. {
  37. "version": "0.2.0",
  38. "configurations": [
  39. {
  40. "type": "chrome",
  41. "request": "launch",
  42. "name": "nwjs DOM debug",
  43. "runtimeExecutable": "${workspaceRoot}/nw.exe",
  44. "runtimeArgs": [
  45. "${workspaceRoot}",
  46. "--remote-debugging-port=9222"
  47. ],
  48. "webRoot": "${workspaceRoot}",
  49. "sourceMaps": false,
  50. "diagnosticLogging": true,
  51. "port": 9222
  52. },
  53. {
  54. "type": "chrome",
  55. "request": "launch",
  56. "name": "nwjs Node debug",
  57. "runtimeExecutable": "${workspaceRoot}/nw.exe",
  58. "runtimeArgs": [
  59. "${workspaceRoot}",
  60. "--remote-debugging-port=9222"
  61. ],
  62. "url": "chrome-extension://*/_generated_background_page.html",
  63. "webRoot": "${workspaceRoot}",
  64. "sourceMaps": false,
  65. "diagnosticLogging": true,
  66. "port": 9222
  67. }
  68. ]
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement