2022-10-14 08:51:30 +01:00
|
|
|
{
|
|
|
|
// 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",
|
2022-10-14 09:05:14 +01:00
|
|
|
"name": "start with node",
|
2022-10-14 08:51:30 +01:00
|
|
|
"skipFiles": [
|
|
|
|
"<node_internals>/**"
|
|
|
|
],
|
|
|
|
"program": "${workspaceFolder}/src/index.js"
|
|
|
|
},
|
2022-10-14 09:05:14 +01:00
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"name": "start with yarn",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"runtimeExecutable": "yarn",
|
|
|
|
"runtimeArgs": ["start"],
|
|
|
|
},
|
2022-10-14 08:51:30 +01:00
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"name": "dev",
|
|
|
|
"request": "launch",
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"runtimeExecutable": "yarn",
|
|
|
|
"runtimeArgs": ["dev"],
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|