this is my `.vscode/launch.json` : ```json { "configurations": [ { "name":

this is my .vscode/launch.json :

{
    "configurations": [
        {
            "name": "hybrid-routing",
            "type": "node",
            "request": "launch",
            "sourceMaps": true,
            "skipFiles": ["<node_internals>/**"],
            "program": "${workspaceFolder}/index.ts",
            "outFiles": [
                "${workspaceFolder}/out/**/*.js"
            ],
            "preLaunchTask": "tsc: build - tsconfig.json",
        }
    ]
}
Was this page helpful?