ImportMeta
Deno provides extra properties on import.meta. These are included here
to ensure that these are still available when using the Deno namespace in
conjunction with other type libs, like dom.
interface ImportMeta {
main: boolean;
url: string;
resolve(specifier: string): string;
}