From 621a874b2996fc748ca300ce03b52ec7e3923378 Mon Sep 17 00:00:00 2001 From: Yura Bondarenko Date: Fri, 25 Feb 2022 10:34:04 +0100 Subject: [PATCH] 87968: Include theme modules in tsconfig.spec.ts Without this, Webpack errors out when building tests due to theme components missing from the TS compilation --- tsconfig.spec.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.spec.json b/tsconfig.spec.json index b593cae319..05d55a31f8 100644 --- a/tsconfig.spec.json +++ b/tsconfig.spec.json @@ -14,6 +14,7 @@ ], "include": [ "src/**/*.spec.ts", - "src/**/*.d.ts" - ] + "src/**/*.d.ts", + "src/themes/**/*.module.ts" + ], }