mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 22:54:22 +00:00
48 lines
No EOL
1.2 KiB
JSON
48 lines
No EOL
1.2 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Web server",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "yarn run app:dev",
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
},
|
|
{
|
|
"name": "Web page",
|
|
"type": "firefox",
|
|
"request": "launch",
|
|
"url": "http://local.steffo.eu",
|
|
"pathMappings": [
|
|
{
|
|
"url": "webpack://_n_e",
|
|
"path": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
},
|
|
{
|
|
"name": "Prisma Studio",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "yarn run db:studio",
|
|
"presentation": {
|
|
"group": "Single",
|
|
}
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Everything!",
|
|
"configurations": ["Web server", "Web page", "Prisma Studio"],
|
|
"stopAll": true,
|
|
"presentation": {
|
|
"group": "Full",
|
|
}
|
|
}
|
|
]
|
|
} |