Attributes of a JavaScript source map file.

Hierarchy

  • SourcemapFileAttributes

Constructors

Properties

additionalProperties?: {
    [key: string]: any;
}

A container for additional, undeclared properties. This is a holder for any undeclared properties as specified with the 'additionalProperties' keyword in the OAS document.

Type declaration

  • [key: string]: any
file: string

The name of the minified JavaScript file.

mappings: string

The Base64 VLQ encoded string that maps positions in the minified file to positions in the original source files.

minifiedLineLengths: number[]

List of character counts for each line in the minified file.

names: any[]

List of symbol names referenced in the mappings.

sourceRoot: string

The root path prepended to source file paths.

sources: string[]

List of original source file paths.

sourcesContent: string[]

List of original source file contents corresponding to the paths in sources.

version: number

The version of the source map format (typically 3).

Generated using TypeDoc