{
    "version": "0.2.0",
    "configurations": [
      {
        "type": "node",
        "request": "launch",
        "name": "Debug",
        "program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
        "args": [
          "--runInBand",
          "--testPathPattern=*.spec.ts",
          "--testTimeout=9999999"
        ],
        "console": "integratedTerminal",
        "internalConsoleOptions": "neverOpen",
        "cwd": "${workspaceFolder}",
        "runtimeArgs": [
          "--inspect-brk"
        ],
        "smartStep": true,
        "outFiles": ["${workspaceFolder}/dist/**/*.js"], // If you're compiling TS to dist/
        "skipFiles": ["<node_internals>/**"]
      }
    ]
  }
  