1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-10-16 06:17:32 +00:00

Port VSC launch config from @Steffo99/festa

This commit is contained in:
Steffo 2022-06-28 18:37:43 +02:00
parent 09b9fe99e4
commit aa31ac09fa
Signed by: steffo
GPG key ID: 6965406171929D01

49
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,49 @@
{
"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": "Web page",
"type": "firefox",
"request": "launch",
"url": "http://localhost:3000",
"pathMappings": [
{
"url": "webpack://_n_e",
"path": "${workspaceFolder}"
}
],
"presentation": {
"group": "Single",
}
},
],
"compounds": [
{
"name": "Everything!",
"configurations": ["Web server", "Web page"],
"stopAll": true,
"presentation": {
"group": "Full",
}
}
]
}