mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
Use debug console (again) instead of a terminal
This commit is contained in:
parent
deebefbc89
commit
0d8e7eee43
1 changed files with 28 additions and 11 deletions
39
.vscode/launch.json
vendored
39
.vscode/launch.json
vendored
|
@ -3,9 +3,35 @@
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Web server",
|
"name": "Web server",
|
||||||
"type": "node-terminal",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"command": "yarn run app:dev",
|
"runtimeArgs": [
|
||||||
|
"run",
|
||||||
|
"app: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": {
|
"presentation": {
|
||||||
"group": "Single",
|
"group": "Single",
|
||||||
}
|
}
|
||||||
|
@ -25,15 +51,6 @@
|
||||||
"group": "Single",
|
"group": "Single",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Prisma Studio",
|
|
||||||
"type": "node-terminal",
|
|
||||||
"request": "launch",
|
|
||||||
"command": "yarn run db:studio",
|
|
||||||
"presentation": {
|
|
||||||
"group": "Single",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"compounds": [
|
"compounds": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue