From 65c0b95927c4c352e29f893dd99a84bc5051b86f Mon Sep 17 00:00:00 2001 From: Max Nanis Date: Thu, 19 Feb 2026 20:32:34 -0500 Subject: Adding React / UI vscode folder and updating Footer to link to git repo --- jb-ui/.vscode/launch.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 jb-ui/.vscode/launch.json (limited to 'jb-ui/.vscode/launch.json') diff --git a/jb-ui/.vscode/launch.json b/jb-ui/.vscode/launch.json new file mode 100644 index 0000000..1feeaca --- /dev/null +++ b/jb-ui/.vscode/launch.json @@ -0,0 +1,45 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "React: James Billings dev", + "type": "node", + "request": "launch", + "runtimeExecutable": "/root/.local/share/pnpm/pnpm", + "runtimeArgs": [ + "run", + "dev" + ], + "autoAttachChildProcesses": true + }, + { + "name": "React: Launch Chrome", + "type": "chrome", + "request": "launch", + "url": "http://localhost:5173", + "webRoot": "${workspaceFolder}/src", + "sourceMaps": true, + "preLaunchTask": "npm: dev" + }, + { + "name": "React: Attach to Chrome", + "type": "chrome", + "request": "attach", + "port": 9222, + "url": "http://localhost:5173", + "webRoot": "${workspaceFolder}/src" + }, + { + "name": "Jest: Run Tests", + "type": "node", + "request": "launch", + "runtimeExecutable": "/root/.local/share/pnpm/pnpm", + "runtimeArgs": [ + "test", + "--runInBand" + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen" + } + ] +} \ No newline at end of file -- cgit v1.2.3