mirror of https://github.com/aminya/setup-cpp
18 lines
449 B
JSON
18 lines
449 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"name": "Jest Current File",
|
||
|
"runtimeExecutable": "sh",
|
||
|
"program": "node_modules/.bin/jest",
|
||
|
"args": [
|
||
|
"${relativeFile}"
|
||
|
],
|
||
|
"console": "integratedTerminal",
|
||
|
"internalConsoleOptions": "openOnFirstSessionStart",
|
||
|
}
|
||
|
]
|
||
|
}
|