2020-05-19 15:25:54 +02: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": [
|
2024-04-05 02:25:13 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
"name": "C#: <project-name> Debug",
|
|
|
|
"type": "dotnet",
|
|
|
|
"request": "launch",
|
|
|
|
"projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
|
|
|
|
},
|
2024-04-23 11:04:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "C#: <swift> Debug",
|
|
|
|
"type": "dotnet",
|
|
|
|
"request": "launch",
|
|
|
|
"projectPath": "${workspaceFolder}/<relative-path-to-project-folder><project-name>.csproj"
|
|
|
|
},
|
2020-05-19 15:25:54 +02:00
|
|
|
{
|
|
|
|
"name": "Debug Jest Tests on Nix",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"runtimeArgs": [
|
|
|
|
"--inspect-brk",
|
|
|
|
"${workspaceRoot}/node_modules/.bin/jest",
|
|
|
|
"--runInBand"
|
|
|
|
],
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"internalConsoleOptions": "neverOpen",
|
|
|
|
"port": 9229
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|