mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"version": "0.2.0",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"type": "bun",
|
||
|
|
"internalConsoleOptions": "neverOpen",
|
||
|
|
"request": "launch",
|
||
|
|
"name": "Debug File",
|
||
|
|
"program": "${file}",
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"stopOnEntry": false,
|
||
|
|
"watchMode": false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "bun",
|
||
|
|
"internalConsoleOptions": "neverOpen",
|
||
|
|
"request": "launch",
|
||
|
|
"name": "Run File",
|
||
|
|
"program": "${file}",
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"watchMode": false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "bun",
|
||
|
|
"internalConsoleOptions": "neverOpen",
|
||
|
|
"request": "attach",
|
||
|
|
"name": "Attach Bun",
|
||
|
|
"url": "ws://localhost:6499/",
|
||
|
|
"stopOnEntry": false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"type": "bun",
|
||
|
|
"internalConsoleOptions": "neverOpen",
|
||
|
|
"request": "launch",
|
||
|
|
"name": "Run index.ts",
|
||
|
|
"program": "${workspaceFolder}/index.ts",
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"watchMode": true
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|