schema.json 648 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "title": "Babel Loader options",
  3. "type": "object",
  4. "properties": {
  5. "cacheDirectory": {
  6. "anyOf": [
  7. {
  8. "type": "boolean"
  9. },
  10. {
  11. "type": "string"
  12. }
  13. ],
  14. "default": false
  15. },
  16. "cacheIdentifier": {
  17. "type": "string"
  18. },
  19. "cacheCompression": {
  20. "type": "boolean",
  21. "default": true
  22. },
  23. "customize": {
  24. "anyOf": [
  25. {
  26. "type": "null"
  27. },
  28. {
  29. "type": "string"
  30. }
  31. ],
  32. "default": null
  33. },
  34. "metadataSubscribers": {
  35. "type": "array"
  36. }
  37. },
  38. "additionalProperties": true
  39. }