{ // 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": "dev", "type": "node", "request": "launch", "args": ["./src/index.ts"], "runtimeArgs": ["--loader", "@swc-node/register/esm"], "cwd": "${workspaceRoot}", "protocol": "inspector", "internalConsoleOptions": "openOnSessionStart", "outputCapture": "std", "env": { "DEBUG": "blossom-server,blossom-server:*" } }, { "name": "start", "type": "node", "request": "launch", "args": ["./build/index.js"], "cwd": "${workspaceRoot}", "protocol": "inspector", "internalConsoleOptions": "openOnSessionStart", "outputCapture": "std", "env": { "DEBUG": "blossom-server,blossom-server:*", "DEBUG_COLORS": "1" } } ] }