Advertisement
Guest User

Untitled

a guest
Jun 25th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.03 KB | None | 0 0
  1. {
  2.     "version": "0.2.0",
  3.     "configurations": [
  4.    
  5.         {
  6.             "name": "Debug Atlas Web - Ruby",
  7.             "type": "Ruby",
  8.             "request": "launch",
  9.             "cwd": "${workspaceRoot}/packages/atlas-web",
  10.             "program": "${workspaceRoot}/packages/atlas-web/bin/cucumber",
  11.             "showDebuggerOutput": true,
  12.             "args": ["-p", "mock", "-p", "development", "-p", "chrome", "${file}:${lineNumber}"],
  13.             "useBundler": true,
  14.             "pathToRDebugIDE":"${workspaceRoot}/packages/atlas-web/bin/rdebug-ide"
  15.         },
  16.         {
  17.             "name": "Debug Atlas TV - Ruby",
  18.             "type": "Ruby",
  19.             "request": "launch",
  20.             "cwd": "${workspaceRoot}/packages/atlas-tv",
  21.             "program": "${workspaceRoot}/packages/atlas-tv/bin/cucumber",
  22.             "showDebuggerOutput": true,
  23.             "args": ["-p", "mock", "-p", "development", "-p", "chrome", "${file}:${lineNumber}"],
  24.             "useBundler": true,
  25.             "pathToRDebugIDE":"${workspaceRoot}/packages/atlas-tv/bin/rdebug-ide"
  26.         },
  27.         {
  28.             "name": "Debug Atlas Web - JS",
  29.             "type": "chrome",
  30.             "request": "launch",
  31.             "url": "http://localhost:3000/mock",
  32.             "webRoot": "${workspaceRoot}",
  33.             "sourceMaps": true,
  34.             "sourceMapPathOverrides": {
  35.                 "webpack:///./~/*": "${workspaceRoot}/packages/atlas-web/node_modules/*",
  36.                 "webpack:///./*":   "${workspaceRoot}/packages/atlas-web/*",
  37.             }
  38.         },
  39.         {
  40.             "name": "Debug Atlas TV - JS",
  41.             "type": "chrome",
  42.             "request": "launch",
  43.             "url": "http://localhost:3000/",
  44.             "webRoot": "${workspaceRoot}",
  45.             "sourceMaps": true,
  46.             "sourceMapPathOverrides": {
  47.                 "webpack:///./~/*": "${workspaceRoot}/packages/atlas-tv/node_modules/*",
  48.                 "webpack:///./*":   "${workspaceRoot}/packages/atlas-tv/*",
  49.             }
  50.         }
  51.     ]
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement