Add debug config!

This commit is contained in:
Vitaly 2023-08-09 21:00:50 +03:00
parent cd3c1f3973
commit a977441046

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

@ -0,0 +1,18 @@
{
"configurations": [
{
"type": "msedge",
"name": "https://localhost:8080/",
"request": "launch",
"url": "https://localhost:8080/",
"outFiles": [
"${workspaceFolder}/public/**/*.js",
"!${workspaceFolder}/public/**/*vendors*",
"!**/node_modules/**"
],
"skipFiles": [
"<node_internals>/**/*vendors-*"
],
},
]
}