interface EmittedPrebuiltChunk {
    code: string;
    exports?: string[];
    fileName: string;
    map?: SourceMap;
    sourcemapFileName?: string;
    type: "prebuilt-chunk";
}

Properties

code: string
exports?: string[]
fileName: string
map?: SourceMap
sourcemapFileName?: string
type: "prebuilt-chunk"