feat: added .vscode/launch.json

This commit is contained in:
Laureηt 2021-10-07 18:49:21 +02:00
parent 59b130f31f
commit 9b71b9fbad
No known key found for this signature in database
GPG key ID: D88C6B294FD40994

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

@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch via NPM",
"console": "integratedTerminal",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"start"
],
}
]
}