35 lines
992 B
JSON
35 lines
992 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch via NPM",
|
|
"cwd": "${workspaceRoot}",
|
|
"runtimeExecutable": "npm",
|
|
"windows": {
|
|
"runtimeExecutable": "npm.cmd"
|
|
},
|
|
"runtimeArgs": [
|
|
"run-script", "debug"
|
|
],
|
|
"port": 9229,
|
|
"preLaunchTask": "NPM Compile"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Mocha Tests",
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"--require", "ts-node/register",
|
|
"-u", "tdd",
|
|
"--timeout", "999999",
|
|
"--colors", "--recursive",
|
|
"${workspaceFolder}/**/*.spec.ts"
|
|
],
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
}
|
|
|
|
]
|
|
} |