From 836afff3dad66497f389df5b5749ba9baa0f47d3 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Tue, 16 Jan 2024 14:50:26 -0800 Subject: [PATCH] fix: apply resolveSourceMapLocations in remoteRoot This is okay now that we have fcc2ab2 Fixes https://github.com/microsoft/vscode/issues/202057 --- src/configuration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration.ts b/src/configuration.ts index 99d9973f4..ee4768c53 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -980,7 +980,7 @@ export const applyNodeishDefaults = ( // Resolve source map locations from the outFiles by default: // https://github.com/microsoft/vscode-js-debug/issues/704 - if (config.resolveSourceMapLocations === undefined && !config.remoteRoot) { + if (config.resolveSourceMapLocations === undefined) { config.resolveSourceMapLocations = config.outFiles; } };