2015-10-22 06:24:05 +03:00
|
|
|
{
|
|
|
|
"version": "0.1.0",
|
|
|
|
"configurations": [
|
2018-06-21 18:06:37 +03:00
|
|
|
|
2015-10-22 06:24:05 +03:00
|
|
|
{
|
2015-11-25 19:32:44 +03:00
|
|
|
"name": "Launch tests",
|
2015-10-22 06:24:05 +03:00
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2022-03-23 19:27:13 +03:00
|
|
|
"program": "${workspaceRoot}/node_modules/mocha/bin/mocha",
|
2015-10-22 06:24:05 +03:00
|
|
|
"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}",
|
2015-10-22 06:24:05 +03:00
|
|
|
"runtimeExecutable": null,
|
|
|
|
"runtimeArgs": ["--nolazy"],
|
|
|
|
"env": {
|
|
|
|
"NODE_ENV": "development"
|
|
|
|
},
|
2017-05-19 16:40:00 +03:00
|
|
|
"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"
|
2015-10-22 06:24:05 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|