vscode-textmate/.vscode/launch.json

30 строки
634 B
JSON
Исходник Постоянная ссылка Обычный вид История

{
"version": "0.1.0",
"configurations": [
2018-06-21 18:06:37 +03:00
{
2015-11-25 19:32:44 +03:00
"name": "Launch tests",
"type": "node",
"request": "launch",
2022-03-23 19:27:13 +03:00
"program": "${workspaceRoot}/node_modules/mocha/bin/mocha",
"stopOnEntry": false,
2022-03-23 19:27:13 +03:00
"args": [ "--ui=tdd", "./out/tests/all.test.js"],
2016-05-12 21:32:55 +03:00
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"runtimeArgs": ["--nolazy"],
"env": {
"NODE_ENV": "development"
},
"console": "internalConsole",
"sourceMaps": true,
2022-03-23 19:27:13 +03:00
"outFiles": [ "out/**" ]
2018-06-21 18:06:37 +03:00
},
{
"type": "node",
"request": "launch",
"name": "Launch benchmark",
"program": "${workspaceFolder}/benchmark/benchmark.js"
}
]
}