From 85328f53e68f6deb2a453265f28fdb82a3b6d237 Mon Sep 17 00:00:00 2001 From: isidor Date: Fri, 28 Oct 2016 12:55:15 +0200 Subject: [PATCH] debug: fix issue with not passing outFiles #14655 --- src/vs/workbench/parts/debug/common/debug.ts | 1 + src/vs/workbench/parts/debug/electron-browser/debugService.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/common/debug.ts b/src/vs/workbench/parts/debug/common/debug.ts index c97d8d042dc..33a7c77c119 100644 --- a/src/vs/workbench/parts/debug/common/debug.ts +++ b/src/vs/workbench/parts/debug/common/debug.ts @@ -302,6 +302,7 @@ export interface IExtHostConfig extends IEnvConfig { port?: number; sourceMaps?: boolean; outDir?: string; + outFiles?: string; } export interface IConfig extends IEnvConfig { diff --git a/src/vs/workbench/parts/debug/electron-browser/debugService.ts b/src/vs/workbench/parts/debug/electron-browser/debugService.ts index 1ddf8591d22..78a6ed53169 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugService.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugService.ts @@ -770,7 +770,7 @@ export class DebugService implements debug.IDebugService { request: 'attach', port, sourceMaps: configuration.sourceMaps, - outDir: configuration.outDir, + outFiles: configuration.outDir || configuration.outFiles, debugServer: configuration.debugServer }) ); -- GitLab