mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
27 lines
520 B
JSON
27 lines
520 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch server",
|
|
"request": "launch",
|
|
"runtimeArgs": ["dev"],
|
|
"runtimeExecutable": "pnpm",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Launch browser",
|
|
"url": "http://localhost:5173",
|
|
"webRoot": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Both",
|
|
"configurations": ["Launch server", "Launch browser"]
|
|
}
|
|
]
|
|
}
|