@oazmi/esbuild-types - v0.25.0
    Preparing search index...

    Interface InitializeOptions

    interface InitializeOptions {
        wasmURL?: string | URL;
        wasmModule?: Module;
        worker?: boolean;
    }
    Index

    Properties

    wasmURL?: string | URL

    The URL of the "esbuild.wasm" file. This must be provided when running esbuild in the browser.

    wasmModule?: Module

    The result of calling "new WebAssembly.Module(buffer)" where "buffer" is a typed array or ArrayBuffer containing the binary code of the "esbuild.wasm" file.

    You can use this as an alternative to "wasmURL" for environments where it's not possible to download the WebAssembly module.

    worker?: boolean

    By default esbuild runs the WebAssembly-based browser API in a web worker to avoid blocking the UI thread. This can be disabled by setting "worker" to false.