asclasit
Version:
ASync CLasses + ASync ITerators
45 lines (43 loc) • 1.04 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--expose-gc",
"--inspect-brk",
"--trace-warnings",
"--trace-deprecation",
"--unhandled-rejections=throw",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--logHeapUsage",
"--colors"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
},
{
"name": "Jest Debug One",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--expose-gc",
"--inspect-brk",
"--trace-warnings",
"--trace-deprecation",
"--unhandled-rejections=throw",
"${workspaceRoot}/node_modules/.bin/jest",
"--runInBand",
"--logHeapUsage",
"func2/cache."
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
}
]
}