2023-03-03 16:23:46 +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": [
|
|
|
|
{
|
|
|
|
"name": "Debug",
|
|
|
|
"type": "node",
|
2023-10-10 13:03:20 +02:00
|
|
|
"runtimeVersion": "18.15.0",
|
2023-03-03 16:23:46 +01:00
|
|
|
"request": "launch",
|
|
|
|
"runtimeExecutable": "npm",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"runtimeArgs": [
|
|
|
|
"run",
|
2023-10-14 11:10:10 +02:00
|
|
|
"run:debug"
|
2023-03-03 16:23:46 +01:00
|
|
|
],
|
|
|
|
"outFiles": [
|
|
|
|
"!**/node_modules/**"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"outputCapture": "std"
|
|
|
|
}
|
|
|
|
]
|
2023-11-16 22:42:06 +01:00
|
|
|
}
|