Interface BuildError

One build/transpile error from the sandbox bundler's compile of the previewed app. path is repo-relative (leading slash) when the error is file-located.

interface BuildError {
    column?: number;
    line?: number;
    message: string;
    path?: string;
}

Properties

column?: number
line?: number
message: string
path?: string