interface TransformModuleJSON {
    ast?: ProgramNode;
    code: string;
    customTransformCache: boolean;
    originalCode: string;
    originalSourcemap: null | ExistingDecodedSourceMap;
    sourcemapChain: DecodedSourceMapOrMissing[];
    transformDependencies: string[];
}

Hierarchy (view full)

Properties

code: string
customTransformCache: boolean
originalCode: string
originalSourcemap: null | ExistingDecodedSourceMap
sourcemapChain: DecodedSourceMapOrMissing[]
transformDependencies: string[]