"description":"Include source maps for modules based on their extension (defaults to .js and .css)",
"$ref":"#/definitions/rules"
},
"include":{
"description":"Include source maps for module paths that match the given value",
"$ref":"#/definitions/rules"
},
"exclude":{
"description":"Exclude modules that match the given value from source map generation",
"$ref":"#/definitions/rules"
},
"filename":{
"description":"Defines the output filename of the SourceMap (will be inlined if no value is provided)",
"oneOf":[
{
"description":"null is not documented, but appears in the codebase",
"enum":[null]
},
{
"minLength":1,
"type":"string"
}
]
},
"append":{
"description":"Appends the given value to the original asset. Usually the #sourceMappingURL comment. [url] is replaced with a URL to the source map file. false disables the appending",
"oneOf":[
{
"description":
"null is not documented, but appears in the codebase",