From 17391eaff7488427fb823112c9327998e02e8cd9 Mon Sep 17 00:00:00 2001 From: JGAntunes Date: Thu, 9 Nov 2023 17:15:37 +0000 Subject: [PATCH] chore(build): fix compilation errors --- packages/build/src/error/types.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/build/src/error/types.ts b/packages/build/src/error/types.ts index 641eb59104..d4cbb31ab3 100644 --- a/packages/build/src/error/types.ts +++ b/packages/build/src/error/types.ts @@ -1,7 +1,9 @@ -export type BuildError = BasicErrorInfo & { +// We override errorProps and title through getTitle and getErrorProps +export type BuildError = Omit & { title: string pluginInfo?: string locationInfo?: string + errorProps?: string } export type BasicErrorInfo = {