prismarine-web-client-mirror/.vscode/launch.json
2023-09-19 16:21:13 +03:00

18 lines
493 B
JSON

{
"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-*"
],
},
]
}