import { Jsonifiable } from "type-fest"; //#region src/cli/shared/error-diagnostics.d.ts /** Where a failure originated, for tooling that links to source. */ export interface ErrorSourceLocation { /** Absolute path to the file the failure points at. */ file: string; /** 1-based line within `file`. */ line?: number; } //#endregion