mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
648 B
39 lines
648 B
{
|
|
"title": "Babel Loader options",
|
|
"type": "object",
|
|
"properties": {
|
|
"cacheDirectory": {
|
|
"anyOf": [
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
],
|
|
"default": false
|
|
},
|
|
"cacheIdentifier": {
|
|
"type": "string"
|
|
},
|
|
"cacheCompression": {
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"customize": {
|
|
"anyOf": [
|
|
{
|
|
"type": "null"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
],
|
|
"default": null
|
|
},
|
|
"metadataSubscribers": {
|
|
"type": "array"
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|
|
|