1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/.vscode/launch.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2022-05-26 14:26:43 +00:00
{
"version": "0.2.0",
"configurations": [
{
2022-06-02 15:03:28 +00:00
"name": "Web server",
"type": "node-terminal",
2022-05-26 14:26:43 +00:00
"request": "launch",
2022-06-02 15:03:28 +00:00
"command": "yarn run app:dev",
"presentation": {
"group": "Single",
}
2022-05-29 02:01:56 +00:00
},
{
2022-06-02 15:03:28 +00:00
"name": "Web page",
"type": "firefox",
2022-05-29 02:01:56 +00:00
"request": "launch",
2022-06-02 15:03:28 +00:00
"url": "http://local.steffo.eu",
"pathMappings": [
{
"url": "webpack://_n_e",
"path": "${workspaceFolder}"
}
2022-05-29 02:01:56 +00:00
],
2022-06-02 15:03:28 +00:00
"presentation": {
"group": "Single",
}
2022-05-29 02:01:56 +00:00
},
2022-06-02 15:03:28 +00:00
{
"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",
}
}
2022-05-26 14:26:43 +00:00
]
}