34 lines
767 B
JSON
34 lines
767 B
JSON
|
{
|
||
|
"version": "0.1.0",
|
||
|
// List of configurations. Add new configurations or edit existing ones.
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Attach",
|
||
|
"type": "node",
|
||
|
"request": "attach",
|
||
|
"port": 6004,
|
||
|
"sourceMaps": true,
|
||
|
"outFiles": ["${workspaceFolder}/out/**/*js"],
|
||
|
"preLaunchTask": "npm: compile"
|
||
|
},
|
||
|
{
|
||
|
"name": "Unit Tests",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"program": "${workspaceFolder}/../../../node_modules/mocha/bin/_mocha",
|
||
|
"stopOnEntry": false,
|
||
|
"args": [
|
||
|
"--timeout",
|
||
|
"999999",
|
||
|
"--colors"
|
||
|
],
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"runtimeExecutable": null,
|
||
|
"runtimeArgs": [],
|
||
|
"env": {},
|
||
|
"sourceMaps": true,
|
||
|
"outFiles": ["${workspaceFolder}/out/**/*js"],
|
||
|
"preLaunchTask": "npm: compile"
|
||
|
}
|
||
|
]
|
||
|
}
|