Debug rt with vs code

Hi,
I want to use vs code to develop/debug RT extensions. I’ve already installed a related vs code plugin and managed to debug simple Perl applications. I want to know how I should configure launch.json to be able to debug RT properly. Here is my initial launch.json:

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "perl",
            "request": "launch",
            "name": "Perl-Debug",
            "program": "${workspaceFolder}/${relativeFile}",
            "stopOnEntry": true,
            "reloadModules": true
        }
    ]
}

I appreciate your help,

I’ve been very happily debugging RT using VSCode. I used basically the same launch.json that
you show. (I’ve added a line that allows me to specify arguments to the RT run by VSCode).

It works great!

Jon Forrest