Minimal repo with Typecript + Jest

To run the debugger with VSCode + a jest related script

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Run Script: test",
            "type": "node",
            "request": "launch",
            "runtimeArgs": ["--inspect-brk", "${workspaceRoot}/node_modules/.bin/jest", "--runInBand", "--coverage", "false"],
            "console": "integratedTerminal",
            "internalConsoleOptions": "neverOpen"
        }
    ]
}