@jspm/generator
    Preparing search index...

    Interface GeneratorCache

    Serializable cache structure for the Generator. Can be saved to disk and restored to speed up subsequent runs.

    interface GeneratorCache {
        packageConfigs: Record<string, PackageConfig>;
        analysis: Record<string, CachedAnalysis>;
        packageBases?: Record<string, string>;
    }
    Index

    Properties

    packageConfigs: Record<string, PackageConfig>

    Package configurations keyed by full package URL

    analysis: Record<string, CachedAnalysis>

    Module analysis data keyed by full module URL

    packageBases?: Record<string, string>

    Cached package-base lookups keyed by full module URL