diff options
-rw-r--r-- | .vscode/launch.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 071ceb977..d5b35bf13 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -338,6 +338,18 @@ { "type": "lldb", "request": "launch", + "name": "bun html-rewriter example", + "program": "bun-debug", + "args": ["run", "examples/bun/html-rewriter.ts"], + "cwd": "${workspaceFolder}", + "env": { + "FORCE_COLOR": "1" + }, + "console": "internalConsole" + }, + { + "type": "lldb", + "request": "launch", "name": "bun tes2t", "program": "bun-debug", "args": ["add", "imagemin-webpack-plugin"], |