Type alias CompilationErrorFatal

CompilationErrorFatal: {
    error: string;
    range: Range;
}

A compilation error from which it is not possible to recover. This includes problems with the wallet template, missing dependencies in the compiler configuration, and other errors that likely require meaningful software changes.

Type declaration

  • error: string

    A message describing the compilation error.

  • range: Range

    The range in the source text to which this error can be traced. This is useful for highlighting/underlining the cause of the error in development.

Generated using TypeDoc