From 7ce9c3fd3bb635049d58075401c75133787bf15c Mon Sep 17 00:00:00 2001 From: sibiraj-s Date: Tue, 19 Oct 2021 17:26:29 +0530 Subject: [PATCH] build: enable webpack infrastructureLogging --- webpack.config.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 5d13172..f1dabd5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,8 +1,3 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - // @ts-check /** @typedef {import('webpack').Configuration} WebpackConfig * */ @@ -43,6 +38,9 @@ const extensionConfig = { ], }, devtool: 'nosources-source-map', + infrastructureLogging: { + level: 'log', // enables logging required for problem matchers + }, }; /** @type WebpackConfig */ @@ -93,6 +91,9 @@ const webExtensionConfig = { hints: false, }, devtool: 'nosources-source-map', // create a source map that points to the original source file + infrastructureLogging: { + level: 'log', // enables logging required for problem matchers + }, }; module.exports = [extensionConfig, webExtensionConfig];