Skip to content

Commit

Permalink
chore(build): fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JGAntunes committed Nov 9, 2023
1 parent 0933e2e commit 17391ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/build/src/error/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
export type BuildError = BasicErrorInfo & {
// We override errorProps and title through getTitle and getErrorProps
export type BuildError = Omit<BasicErrorInfo, 'errorProps'> & {
title: string
pluginInfo?: string
locationInfo?: string
errorProps?: string
}

export type BasicErrorInfo = {
Expand Down

0 comments on commit 17391ea

Please sign in to comment.