35 lines
816 B
JSON
35 lines
816 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch server",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"runtimeExecutable": "bun",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"type": "node",
|
|
"console": "internalConsole"
|
|
},
|
|
{
|
|
"type": "msedge",
|
|
"request": "launch",
|
|
"name": "Launch Edge",
|
|
"url": "http://localhost:5173/",
|
|
"webRoot": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Both",
|
|
"configurations": [
|
|
"Launch server",
|
|
"Launch Edge"
|
|
]
|
|
}
|
|
]
|
|
} |