vega-frontend-monorepo/.vscode/launch.json

21 lines
439 B
JSON
Raw Permalink Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/@nrwl/cli/bin/nx.js",
"args": [
"test",
"accounts",
"--codeCoverage=false",
"--testFile=summary-row.spec.ts",
"--watch"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
}
]
}