Unfortunately did not work for me. Breakpoints are skipped. So I solved that by calling jest directly by the same principle with this configuration:
```json
{
"type": "node",
"request": "launch",
"name": "Jest: Run Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"my-file.spec.ts"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
}}
```