This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/.vscode/launch.json

35 lines
749 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "Current file",
"internalConsoleOptions": "openOnSessionStart",
"request": "launch",
"env": {
"BDSD_IGNORE_KEY": "1",
"PORT": "3000"
},
"args": [
"-r", "ts-node/register",
"${file}"
],
},
{
"type": "node",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha.js",
"internalConsoleOptions": "openOnSessionStart",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"args": [
"-r", "ts-node/register",
"--colors",
"${workspaceFolder}/tests/**/*.ts"
],
},
]
}