20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Jest Tests",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"--inspect-brk",
|
|
"${workspaceRoot}/node_modules/jest/bin/jest.js",
|
|
"--runInBand"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"env": {
|
|
"NODE_OPTIONS": "--experimental-vm-modules"
|
|
}
|
|
}
|
|
]
|
|
} |