{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug current TS file",
            "type": "node",
            "request": "launch",
            "args": ["${relativeFile}"],
            "console": "integratedTerminal",
            "runtimeArgs": ["--nolazy", "-r", "./node_modules/ts-node/register"],
            "sourceMaps": true,
            "cwd": "${workspaceRoot}",
            "protocol": "inspector",
            "env": { "TS_NODE_TRANSPILE_ONLY": "true", "TS_NODE_IGNORE_DIAGNOSTICS":"true" }
        }
    ]
}