astro-ghostcms/.pnpm-store/v3/files/aa/766749b8978bbac0145b75d4af3...

18 lines
733 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { SourceMapOptions } from "./index";
import type { Token } from "./parser/tokenizer";
import type { RootTransformerResult } from "./transformers/RootTransformer";
export interface RawSourceMap {
version: number;
file: string;
sources: Array<string>;
sourceRoot?: string;
sourcesContent?: Array<string>;
mappings: string;
names: Array<string>;
}
/**
* Generate a source map indicating that each line maps directly to the original line,
* with the tokens in their new positions.
*/
export default function computeSourceMap({ code: generatedCode, mappings: rawMappings }: RootTransformerResult, filePath: string, options: SourceMapOptions, source: string, tokens: Array<Token>): RawSourceMap;