UNPKG

@tscc/rollup-plugin-tscc

Version:

A rollup plugin to use tscc module specification

11 lines (10 loc) 388 B
import MultiMap from './MultiMap'; /** * This algorithm is based on an assumption that rollup creates at most one chunk for * each combination of entry points. */ export default function computeChunkAllocation(chunkImportedMap: { [chunkName: string]: string[]; }, entryMap: MultiMap<string, string>): MultiMap<string, string>; export declare class ChunkSortError extends Error { }