File size: 1,234 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Brave",
"request": "launch",
"type": "chrome",
"url": "http://calypso.localhost:3000",
"webRoot": "${workspaceFolder}/client",
"runtimeExecutable": "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",
"sourceMapPathOverrides": {
"app://": "${workspaceFolder}/client"
}
},
{
"name": "Launch Chrome",
"request": "launch",
"type": "chrome",
"url": "http://calypso.localhost:3000",
"webRoot": "${workspaceFolder}/client",
"sourceMapPathOverrides": {
"app://": "${workspaceFolder}/client"
}
},
{
"name": "Launch Firefox",
"request": "launch",
"reAttach": true,
"type": "firefox",
"url": "http://calypso.localhost:3000",
"webRoot": "${workspaceFolder}/client",
"pathMappings": [
{
"url": "app:///",
"path": "${workspaceFolder}/client"
}
]
},
{
"name": "Debug Current Jest File",
"type": "node",
"request": "launch",
"runtimeExecutable": "yarn",
"runtimeArgs": [ "test-client" ],
"args": [ "${relativeFile}", "--", "--runInBand" ],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"sourceMaps": true
}
]
}
|