2021-05-20 23:59:20 -04:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Debug Chrome",
|
|
|
|
"url": "http://localhost:8000",
|
|
|
|
"webRoot": "${workspaceFolder}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Gatsby develop",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
|
|
"args": ["develop"],
|
|
|
|
"stopOnEntry": false,
|
|
|
|
"runtimeArgs": ["--nolazy"],
|
|
|
|
"sourceMaps": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Gatsby build",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
|
|
|
|
"args": ["build"],
|
|
|
|
"stopOnEntry": false,
|
|
|
|
"runtimeArgs": ["--nolazy"],
|
|
|
|
"sourceMaps": false
|
2021-06-09 15:32:59 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug Jest Tests",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeArgs": [
|
|
|
|
"--inspect-brk",
|
|
|
|
"--inspect",
|
|
|
|
"${workspaceRoot}/node_modules/.bin/jest"
|
|
|
|
],
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"internalConsoleOptions": "neverOpen",
|
|
|
|
"port": 9229
|
2021-07-09 10:56:38 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "attach",
|
|
|
|
"name": "Debug Cypress",
|
|
|
|
"port": 9222,
|
|
|
|
"urlFilter": "http://localhost*",
|
|
|
|
"webRoot": "${workspaceFolder}",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"skipFiles": [
|
|
|
|
"cypress_runner.js",
|
|
|
|
],
|
|
|
|
},
|
2021-05-20 23:59:20 -04:00
|
|
|
]
|
2021-05-25 16:21:21 -04:00
|
|
|
}
|