Skip to main content

Interface: Z2FViteErrorLocation

Defined in: packages/vite/src/errors.ts:37

Source location attached to a Z2FViteError for IDE navigation and Vite overlay display. All properties are optional — only file is always available; line/column require parse-time or AST-level context.

Properties

column?

optional column?: number

Defined in: packages/vite/src/errors.ts:43

0-based column offset within the line, when available.


file?

optional file?: string

Defined in: packages/vite/src/errors.ts:39

Absolute or project-relative file path where the error originated.


line?

optional line?: number

Defined in: packages/vite/src/errors.ts:41

1-based line number within file, when available.