Launch task added

This commit is contained in:
Pavel Gnedov 2022-05-01 22:03:58 +07:00
parent b6e8db9249
commit c0cf36a892

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

@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"runtimeExecutable": "yarn",
"runtimeArgs": [
"start:debug"
],
"cwd": "${workspaceFolder}"
}
]
}