1
Fork 0
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:
Steffo 2022-06-07 12:21:31 +02:00
parent deebefbc89
commit 0d8e7eee43
Signed by: steffo
GPG key ID: 6965406171929D01

39
.vscode/launch.json vendored
View file

@ -3,9 +3,35 @@
"configurations": [
{
"name": "Web server",
"type": "node-terminal",
"type": "node",
"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": {
"group": "Single",
}
@ -25,15 +51,6 @@
"group": "Single",
}
},
{
"name": "Prisma Studio",
"type": "node-terminal",
"request": "launch",
"command": "yarn run db:studio",
"presentation": {
"group": "Single",
}
}
],
"compounds": [
{