From 6540859654c65381ccdf33657781e6ec7ecac445 Mon Sep 17 00:00:00 2001 From: Peter Blazejewicz Date: Sat, 18 Mar 2017 12:21:25 +0100 Subject: [PATCH] Switch from deprecated outDir to outFiles This commit updates task configuration to use current configuration keys and to limit number of warnings displayed in VSCode itself. Similar one: Microsoft/vscode-generator-code#59 Thanks! --- .vscode/launch.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3bc58243b8..b89fcb9578 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -11,7 +11,9 @@ ], "stopOnEntry": false, "sourceMaps": true, - "outDir": "${workspaceRoot}/out/src" + "outFiles": [ + "${workspaceRoot}/out/src/**/*.js" + ] }, { "name": "Launch Tests", @@ -21,7 +23,9 @@ "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ], "stopOnEntry": false, "sourceMaps": true, - "outDir": "${workspaceRoot}/out/test" + "outFiles": [ + "${workspaceRoot}/out/test/**/*.js" + ] } ] } \ No newline at end of file