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

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

Type Parameters

  • K = string

    the key K must be a json encodable key

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.