mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 07:04:22 +00:00
69 lines
No EOL
1.7 KiB
JSON
69 lines
No EOL
1.7 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Web server",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"runtimeExecutable": "yarn",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"env": {
|
|
"NODE_OPTIONS": "--inspect"
|
|
},
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
},
|
|
{
|
|
"name": "Prisma Studio",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"db-studio"
|
|
],
|
|
"runtimeExecutable": "yarn",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
},
|
|
{
|
|
"name": "Web page",
|
|
"type": "firefox",
|
|
"request": "launch",
|
|
"url": "http://nitro.home.steffo.eu",
|
|
"pathMappings": [
|
|
{
|
|
"url": "webpack://_n_e",
|
|
"path": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
},
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Everything!",
|
|
"configurations": [
|
|
"Web server",
|
|
"Web page",
|
|
"Prisma Studio"
|
|
],
|
|
"stopAll": true,
|
|
"presentation": {
|
|
"group": "Full",
|
|
}
|
|
}
|
|
]
|
|
} |