interface SourceMapOptions {
    content?: string | object;
    filename?: string;
    includeSources?: boolean;
    root?: string;
    url?: string;
}

Properties

content?: string | object

Source map object, 'inline' or source map file content

filename?: string
includeSources?: boolean
root?: string
url?: string