KC's Workspace
    Preparing search index...
    interface ModuleJSON {
        ast: ProgramNode;
        attributes: Record<string, string>;
        code: string;
        customTransformCache: boolean;
        dependencies: string[];
        id: string;
        meta: CustomPluginOptions;
        moduleSideEffects: boolean | "no-treeshake";
        originalCode: string;
        originalSourcemap: ExistingDecodedSourceMap | null;
        resolvedIds: ResolvedIdMap;
        safeVariableNames: Record<string, string> | null;
        sourcemapChain: DecodedSourceMapOrMissing[];
        syntheticNamedExports: string | boolean;
        transformDependencies: string[];
        transformFiles: EmittedFile[] | undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes: Record<string, string>
    code: string
    customTransformCache: boolean
    dependencies: string[]
    id: string
    meta: CustomPluginOptions
    moduleSideEffects: boolean | "no-treeshake"
    originalCode: string
    originalSourcemap: ExistingDecodedSourceMap | null
    resolvedIds: ResolvedIdMap
    safeVariableNames: Record<string, string> | null
    sourcemapChain: DecodedSourceMapOrMissing[]
    syntheticNamedExports: string | boolean
    transformDependencies: string[]
    transformFiles: EmittedFile[] | undefined