schema.js 964 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.schema = void 0;
  4. exports.schema = {
  5. type: 'object',
  6. properties: {
  7. patterns: {
  8. anyOf: [
  9. { type: 'string' },
  10. {
  11. type: 'array',
  12. uniqueItems: true,
  13. items: {
  14. type: 'string',
  15. },
  16. },
  17. ],
  18. },
  19. injector: {
  20. anyOf: [
  21. {
  22. type: 'string',
  23. enum: ['prepend', 'append'],
  24. },
  25. {
  26. instanceof: 'Function',
  27. },
  28. ],
  29. },
  30. globOptions: {
  31. type: 'object',
  32. },
  33. resolveUrl: {
  34. type: 'boolean',
  35. },
  36. },
  37. required: ['patterns'],
  38. additionalProperties: false,
  39. };
  40. //# sourceMappingURL=schema.js.map