diff options
-rw-r--r-- | .vscode/launch.json | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 960418f68..8ec448e0c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -212,7 +212,7 @@ "request": "launch", "name": "Dazzle serve", "program": "bun-debug", - "args": ["--origin=http://localhost:5000", "--disable-hmr"], + "args": ["--origin=http://localhost:5001", "--disable-bun.js", "--disable-hmr"], "cwd": "/Users/jarred/Build/lattice/apps/dazzle", "console": "internalConsole" }, @@ -346,11 +346,11 @@ "request": "launch", "name": "Install", "program": "bun-debug", - "args": ["install"], - "cwd": "/tmp/wow-such-npm", + "args": ["install", "--backend=clonefile"], + "cwd": "/Users/jarred/Build/athena", "env": { - "BUN_CONFIG_SKIP_SAVE_LOCKFILE": "1" - + + "BUN_CONFIG_NO_DEDUPLICATE": "1" }, "console": "internalConsole" }, @@ -359,8 +359,30 @@ "request": "launch", "name": "Install #2", "program": "bun-debug", - "args": ["install"], - "cwd": "/tmp/wow-such-npm2", + "args": ["add", "typescript"], + "cwd": "/tmp/wow-such-npm", + "env": { + }, + "console": "internalConsole" + }, + { + "type": "lldb", + "request": "launch", + "name": "Add", + "program": "bun-debug", + "args": ["add", "react"], + "cwd": "/tmp/wow-such-npm", + "env": { + }, + "console": "internalConsole" + }, + { + "type": "lldb", + "request": "launch", + "name": "Remove", + "program": "bun-debug", + "args": ["remove", "foo"], + "cwd": "/Users/jarred/Build/athena.yarn", "env": { }, "console": "internalConsole" |