From ecaa20e7be75ef10c01bcbf69c744561ef062b73 Mon Sep 17 00:00:00 2001 From: DevTekVE Date: Sun, 5 Apr 2026 15:10:21 +0200 Subject: [PATCH] Add source map configuration to VSCode launch settings - Enables better debugging by mapping sources to `${workspaceFolder}/opendbc/safety`. --- .vscode/launch.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index f090061c42..151b757dab 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -52,6 +52,9 @@ "type": "lldb", "request": "attach", "pid": "${command:pickMyProcess}", + "sourceMap": { + ".": "${workspaceFolder}/opendbc/safety" + }, "initCommands": [ "script import time; time.sleep(3)" ]