Search


Search something to see results

SourceMapObject

Source map object

interface SourceMapObject {
    file?: string;
    mappings: string;
    names?: string[];
    sourceRoot?: string;
    sources?: string[];
    sourcesContent?: (string | null)[];
    version: number;
}

Index

Properties

file?: string

Source file

mappings: string

Mappings

names?: string[]

Variable names

sourceRoot?: string

Source root

sources?: string[]

Source files

sourcesContent?: (string | null)[]

Source files content

version: number

Source map version