diff --git a/.vscode/launch.json b/.vscode/launch.json index c5ae68d..bee591d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,12 +7,20 @@ { "type": "node", "request": "launch", - "name": "start", + "name": "start with node", "skipFiles": [ "/**" ], "program": "${workspaceFolder}/src/index.js" }, + { + "type": "node", + "name": "start with yarn", + "request": "launch", + "cwd": "${workspaceRoot}", + "runtimeExecutable": "yarn", + "runtimeArgs": ["start"], + }, { "type": "node", "name": "dev",