2019-09-26 12:07:56 +02:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "current file",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"args": [
|
|
|
|
"${relativeFile}"
|
|
|
|
],
|
2025-07-18 10:31:12 +00:00
|
|
|
"runtimeArgs": ["-r", "@git.zone/tsrun"],
|
2019-09-26 12:07:56 +02:00
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "test.ts",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"args": [
|
|
|
|
"test/test.ts"
|
|
|
|
],
|
2025-07-18 10:31:12 +00:00
|
|
|
"runtimeArgs": ["-r", "@git.zone/tsrun"],
|
2019-09-26 12:07:56 +02:00
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|