@oazmi/esbuild-plugin-deno - v0.4.0
    Preparing search index...

    Interface UrlLoaderFactoryConfig

    configuration options for the urlLoaderFactory function.

    interface UrlLoaderFactoryConfig {
        log?: boolean | LoggerFunction;
        defaultLoader: Loader;
        acceptLoaders?: Loader[];
    }
    Index

    Properties

    log?: boolean | LoggerFunction

    enable logging of the input arguments and preferred loader, when DEBUG.LOG is ennabled.

    when set to true, the logs will show up in your console via console.log(). you may also provide your own custom logger function if you wish.

    false

    defaultLoader: Loader

    the default loader that the plugin's loader should use for unidentified content types.

    if you would like to use esbuild's own default loader, set the value to "default".

    "copy"

    acceptLoaders?: Loader[]

    only accept the following subset of loaders when auto content-detection is used for guessing the loader type.

    Note

    if there is no intersection between the set of guessed loaders, and this set of acceptLoaders, then the default loader (defaultLoader) will be used as a fallback.

    undefined (i.e. all available esbuild loaders)