@oazmi/superbuild - v0.1.0
    Preparing search index...

    Interface BundledInputFile

    a description of an input file that was bundled into a physical output file (OnEmitArgs).

    interface BundledInputFile {
        path: string;
        namespace: string;
        loader: string;
        transformLoader: any;
        suffix: string;
        emitData: any;
    }
    Index

    Properties

    path: string

    the original (absolute) resolved path (return value of the onResolve hook) of this bundled resource.

    namespace: string

    the namespace inherited from the onTransform hook (which gets inherited from the onLoad hook, and the onResolve hook prior to it).

    loader: string

    the onLoad loader that was used for this resource. equivalent to OnEmitOptions.loader.

    transformLoader: any

    the onTransform loader that was used for this resource during its transformation stage. if the resource did not go through a transformation stage, then this value will be the same as loader. moreover, this value is equivalent to the OnEmitOptions.transformLoader provided in the filteration options.

    suffix: string

    any url-suffix string that might present in the resolved path.

    emitData: any

    arbitrary data passed from the transformation stage to the emit stage.