onnxruntime/nodejs/.vscode/launch.json

57 lines
1.5 KiB
JSON
Raw Normal View History

{
// 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 Tests (Linux, C++)",
"type": "cppdbg",
"request": "launch",
"program": "node",
"args": [
"${workspaceFolder}/node_modules/mocha/bin/_mocha",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/test-main"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": []
},
{
"name": "Debug Tests (Windows, C++)",
"type": "cppvsdbg",
"request": "launch",
"program": "node.exe",
"args": [
"${workspaceFolder}/node_modules/mocha/bin/_mocha",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/test-main"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true
},
{
"type": "node",
"request": "launch",
"name": "Debug Tests (typescript)",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/test-main"
],
"internalConsoleOptions": "openOnSessionStart",
"smartStep": true,
"sourceMaps": true
}
]
}