Created
June 17, 2021 22:37
-
-
Save rhinodavid/20cdb5ed581ed6c2f06786f93bafcb20 to your computer and use it in GitHub Desktop.
0x-api RFQM VSCode Launch Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "pwa-node", | |
"request": "launch", | |
"name": "RFQM http", | |
"runtimeExecutable": "node", | |
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], | |
"cwd": "${workspaceFolder}", | |
"args": ["--require", "dotenv/config", "src/runners/http_rfqm_service_runner.ts"], | |
"internalConsoleOptions": "openOnSessionStart", | |
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"], | |
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"] | |
}, | |
{ | |
"envFile": "${workspaceFolder}/test/test_env", | |
"type": "node", | |
"request": "launch", | |
"name": "RFQM tests", | |
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", | |
"args": [ | |
"--require", | |
"source-map-support/register", | |
"--require", | |
"make-promises-safe", | |
"${workspaceFolder}/lib/test/rfqm_test.js", | |
"${workspaceFolder}/lib/test/rfqm_db_test.js", | |
"${workspaceFolder}/lib/test/services/rfqm_service_test.js", | |
"--timeout", | |
"200000", | |
"--exit", | |
"--bail" | |
], | |
"console": "integratedTerminal", | |
"internalConsoleOptions": "openOnSessionStart", | |
"disableOptimisticBPs": true, | |
"cwd": "${workspaceFolder}", | |
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment