@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
53 lines (52 loc) • 1.52 kB
JSON
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch and Debug",
"program": "${workspaceFolder}/ts_build/bws.js",
"console": "integratedTerminal",
"sourceMaps": true,
"preLaunchTask": "npm: tsc",
"args": [
"--DEBUG",
"true"
],
"skipFiles": [
"<node_internals>/**"
]
},
{
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test"
],
"internalConsoleOptions": "openOnSessionStart",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node"
},
{
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": [
"<node_internals>/**"
],
"sourceMaps": true,
"type": "node"
}
]
}