alpha-vantage-cli
Version:
A command line app and Node.js api for retreiving data from Alpha Vantage.
59 lines (58 loc) • 1.73 kB
JSON
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Main",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/cli.ts",
"cwd": "${workspaceRoot}",
"env": {
"NODE_ENV": "development"
},
"args": [
// Your args here.
],
"skipFiles": [
"node_modules/**/*.js"
],
"outFiles": [
"${workspaceRoot}/build/**/*.js"
],
"sourceMaps": true,
"stopOnEntry": false,
"console": "internalConsole",
"trace": "all"
},
{
"name": "Mocha",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceRoot}",
"env": {
"NODE_ENV": "development"
},
"args": [
"-u",
"tdd",
"--timeout",
"999999",
"--colors",
"-r",
"ts-node/register",
"${relativeFile}"
],
"skipFiles": [
"node_modules/**/*.js"
],
"sourceMaps": true,
"stopOnEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"protocol": "inspector"
}
]
}