1
mirror of https://github.com/thepeacockproject/Peacock synced 2024-11-16 11:03:30 +01:00

Add a vscode launch config to debug the tools (yarn run-dev tools)

This commit is contained in:
Govert de Gans 2024-03-31 04:44:35 +02:00
parent 14f87e811a
commit 1d1733b0f3

12
.vscode/launch.json vendored
View File

@ -4,6 +4,18 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Dev Tools (run-dev tools)",
"skipFiles": ["<node_internals>/**"],
"env": {
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
},
"runtimeExecutable": "yarn",
"runtimeArgs": ["run-dev", "tools"],
"console": "integratedTerminal"
},
{
"type": "node",
"request": "launch",