This commit is contained in:
Jay 2021-06-15 20:14:02 -04:00 коммит произвёл GitHub
Родитель 0a26c94a97
Коммит d01772376c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -32,8 +32,9 @@ This guide will help you configure VS Code to support setting breakpoints and de
"name": "Debug SST Start",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["start"],
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/sst",
"runtimeArgs": ["start", "--increase-timeout"],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
},
{