tswatch/.vscode/launch.json

30 lines
659 B
JSON
Raw Permalink Normal View History

2020-03-13 17:48:19 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "current file",
"type": "node",
"request": "launch",
"args": [
"${relativeFile}"
],
2023-08-26 12:52:12 +00:00
"runtimeArgs": ["-r", "@git.zone/tsrun"],
2020-03-13 17:48:19 +00:00
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "test.ts",
"type": "node",
"request": "launch",
"args": [
"test/test.ts"
],
2023-08-26 12:52:12 +00:00
"runtimeArgs": ["-r", "@git.zone/tsrun"],
2020-03-13 17:48:19 +00:00
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
}
]
}