Skip to content

Commit

Permalink
Get Real Time Quotes API
Browse files Browse the repository at this point in the history
Fixes #6
  • Loading branch information
odrail committed Dec 22, 2024
1 parent 115eecb commit 2edf24a
Show file tree
Hide file tree
Showing 5 changed files with 737 additions and 2 deletions.
60 changes: 60 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"version": "0.2.0",
"configurations": [
/*
* Each config in this array corresponds to an option
* in the debug drop-down
*/
{
"name": "tsx",
"type": "node",
"request": "launch",

// Debug current file in VSCode
"program": "${file}",

/*
* Path to tsx binary
* Assuming locally installed
*/
"runtimeExecutable": "tsx",

/*
* Open terminal when debugging starts (Optional)
* Useful to see console.logs
*/
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",

// Files to exclude from debugger (e.g. call stack)
"skipFiles": [
// Node.js internal core modules
"<node_internals>/**",

// Ignore all dependencies (optional)
"${workspaceFolder}/node_modules/**",
],
},
{
"name": "index.ts",
"type": "node",
"request": "launch",

// Debug current file in VSCode
"program": "src/index.ts",

/*
* Path to tsx binary
* Assuming locally installed
*/
"runtimeExecutable": "tsx",

/*
* Open terminal when debugging starts (Optional)
* Useful to see console.logs
*/
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
}
],
}
Loading

0 comments on commit 2edf24a

Please sign in to comment.