From 7b4716c439baba46133a0f428a0a722112ee4e47 Mon Sep 17 00:00:00 2001 From: Yura Bondarenko Date: Tue, 28 Jun 2022 10:55:12 +0200 Subject: [PATCH] Filter Webpack warnings --- webpack/webpack.common.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webpack/webpack.common.ts b/webpack/webpack.common.ts index 219ee1bcbb..9228d41141 100644 --- a/webpack/webpack.common.ts +++ b/webpack/webpack.common.ts @@ -95,4 +95,7 @@ export const commonExports = { }, ], }, + ignoreWarnings: [ + /src\/themes\/[^/]+\/.*theme.module.ts is part of the TypeScript compilation but it's unused/, + ] };