Skip to main content
Module

x/enzastdlib/vendor/@deno-emit.ts>TranspileOptions

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
interface TranspileOptions
import { type TranspileOptions } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-emit.ts";

Options which can be set when using the transpile function.

Properties

optional
allowRemote: boolean

Allow remote modules to be loaded or read from the cache.

optional
cacheRoot: string

The cache root to use, overriding the default inferred DENO_DIR.

optional
cacheSetting: CacheSetting

The setting to use when loading sources from the Deno cache.

optional
compilerOptions: CompilerOptions

Compiler options which can be set when transpiling.

optional
importMap: ImportMap | URL | string

An import-map which will be applied to the imports, or the URL of an import map, or the path to an import map

optional
load: FetchCacher["load"]

Override the default loading mechanism with a custom loader. This can provide a way to use "in-memory" resources instead of fetching them remotely.