build(*): Add vscode debugging

This commit is contained in:
Josh Creek
2023-07-09 21:31:17 +00:00
parent 6821e321a1
commit 59b9d0214d
+19
View File
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch via NPM",
"request": "launch",
"runtimeArgs": [
"run",
"dev"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node",
"stopOnEntry": true,
}
]
}