You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
666 B

{
"version": "0.2.0",
"configurations": [
{
"type": "bun",
"request": "launch",
"name": "Debug Bun File",
"program": "${cwd}/src/main.js",
"cwd": "${workspaceFolder}",
"env": {},
"stopOnEntry": false,
"watchMode": false,
"noDebug": false,
"runtimeArgs": []
},
{
"type": "bun",
"request": "attach",
"name": "Attach to Bun Process",
"url": "ws://localhost:6499/",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app"
}
]
}