added yarn start script

This commit is contained in:
Nikurasu 2022-10-14 10:05:14 +02:00
parent bec80115fc
commit 71778276a3
1 changed files with 9 additions and 1 deletions

10
.vscode/launch.json vendored
View File

@ -7,12 +7,20 @@
{
"type": "node",
"request": "launch",
"name": "start",
"name": "start with node",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/index.js"
},
{
"type": "node",
"name": "start with yarn",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "yarn",
"runtimeArgs": ["start"],
},
{
"type": "node",
"name": "dev",