Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CompilationError

import type { CompilationError } from "https://googleapis.deno.dev/v1/dataform:v1beta1.ts";

An error encountered when attempting to compile a Dataform project.

interface CompilationError {
readonly actionTarget?: Target;
readonly message?: string;
readonly path?: string;
readonly stack?: string;
}

§Properties

§
readonly actionTarget?: Target
[src]

Output only. The identifier of the action where this error occurred, if available.

§
readonly message?: string
[src]

Output only. The error's top level message.

§
readonly path?: string
[src]

Output only. The path of the file where this error occurred, if available, relative to the project root.

§
readonly stack?: string
[src]

Output only. The error's full stack trace.