@oazmi/esbuild-generic-loader - v0.1.3
    Preparing search index...

    Interface ImportMetadataEntry<K>

    an entry in ["imports"] that specifies the transformation of a dependency path, after the unparsing is complete.

    interface ImportMetadataEntry<K = string> {
        key: K;
        in: string;
        out: string;
    }

    Type Parameters

    • K = string

      the key K must be a json encodable key

    Index

    Properties

    Properties

    key: K

    unique key assigned by the dependency extractor method GenericLoader.extractDeps.

    in: string

    the original path of the import link.

    out: string

    the output bundled path of the import link. typically generated by esbuild.