{ // 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": [ { "type": "node", "request": "launch", "name": "Dev Server (run-dev)", "skipFiles": ["/**"], "env": { "DEBUG": "peacock", "NODE_TLS_REJECT_UNAUTHORIZED": "0" }, "runtimeExecutable": "yarn", "runtimeArgs": ["run-dev"], "outputCapture": "std", "internalConsoleOptions": "openOnSessionStart" }, { "type": "node", "request": "launch", "name": "Prod Server (existing build)", "skipFiles": ["/**"], "program": "${workspaceFolder}/chunk0.js", "outFiles": ["${workspaceFolder}/chunk*.js"], "env": { "DEBUG": "peacock", "NODE_TLS_REJECT_UNAUTHORIZED": "0" }, "outputCapture": "std", "internalConsoleOptions": "openOnSessionStart" } ] }