aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/runtime
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-09-24 21:28:25 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-09-24 21:28:33 -0700
commit6326eb42463571ba505ea7a0fed483e65e7b8248 (patch)
treef2b8b75768109b30a50d4ed85da3ba231ac27e2c /docs/guides/runtime
parent96411580c1ea89635d8c38e2f77f8ea55316c52b (diff)
downloadbun-6326eb42463571ba505ea7a0fed483e65e7b8248.tar.gz
bun-6326eb42463571ba505ea7a0fed483e65e7b8248.tar.zst
bun-6326eb42463571ba505ea7a0fed483e65e7b8248.zip
Add buggy note
Diffstat (limited to 'docs/guides/runtime')
-rw-r--r--docs/guides/runtime/vscode-debugger.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/guides/runtime/vscode-debugger.md b/docs/guides/runtime/vscode-debugger.md
index 616524c17..fdfdb2f2e 100644
--- a/docs/guides/runtime/vscode-debugger.md
+++ b/docs/guides/runtime/vscode-debugger.md
@@ -2,6 +2,12 @@
name: Debugging Bun with the VS Code extension
---
+{% note %}
+
+VSCode extension support is currently buggy. We recommend the [Web Debugger](https://bun.sh/guides/runtime/web-debugger) for now.
+
+{% /note %}
+
Bun speaks the [WebKit Inspector Protocol](https://github.com/oven-sh/bun/blob/main/packages/bun-vscode/types/jsc.d.ts) so you can debug your code with an interactive debugger.
---