Deno.EmitResult
UNSTABLE: new API, yet to be vetted.
The result of Deno.emit() API.
interface EmitResult {
diagnostics: Diagnostic[];
files: Record<string, string>;
ignoredOptions?: string[];
stats: Array<[string, number]>;
}§Properties
§
diagnostics: Diagnostic[]
[src]Diagnostic messages returned from the type checker (tsc).
Can be used with Deno.formatDiagnostics to display a user
friendly string.