From 066a876f3da55fb57e0883b22d1cf9930f08092f Mon Sep 17 00:00:00 2001 From: Haris Gušić Date: Mon, 17 Nov 2025 21:28:06 +0100 Subject: docs(contributing): Add "Setting up a Debugger" section (#4421) Co-authored-by: GitHub Action --- .vscode/launch.example.json | 11 +++++++++++ .vscode/settings.example.json | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 .vscode/launch.example.json create mode 100644 .vscode/settings.example.json (limited to '.vscode') diff --git a/.vscode/launch.example.json b/.vscode/launch.example.json new file mode 100644 index 000000000..3f8a2a760 --- /dev/null +++ b/.vscode/launch.example.json @@ -0,0 +1,11 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "bun", + "request": "attach", + "name": "opencode (attach)", + "url": "ws://localhost:6499/" + } + ] +} diff --git a/.vscode/settings.example.json b/.vscode/settings.example.json new file mode 100644 index 000000000..05bbf7fe1 --- /dev/null +++ b/.vscode/settings.example.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "oven.bun-vscode" + ] +} -- cgit v1.2.3