// File version (always the first entry in the object) and must be a positive integer.
$sourceMap['version']=self::VERSION;
// An optional name of the generated code that this source map is associated with.
$file=$this->getOption('sourceMapFilename');
if($file){
$sourceMap['file']=$file;
}
// An optional source root, useful for relocating source files on a server or removing repeated values in the 'sources' entry. This value is prepended to the individual entries in the 'source' field.
$root=$this->getOption('sourceRoot');
if($root){
$sourceMap['sourceRoot']=$root;
}
// A list of original sources used by the 'mappings' entry.