DEV Community

teaganga
teaganga

Posted on

Debug Cloudflare Workers in Vs Code

launch.json:

        {
            "name": "Attach to Worker",
            "type": "node",
            "request": "attach",
            "port": 9229,
            //"port": 8788,

            "skipFiles": ["<node_internals>/**"],

            "sourceMaps": true, 
            "resolveSourceMapLocations": null

        }
Enter fullscreen mode Exit fullscreen mode

Top comments (0)