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.

37 lines
602 B

4 years ago
  1. {
  2. "type": "object",
  3. "properties": {
  4. "hmr": {
  5. "type": "boolean"
  6. },
  7. "base": {
  8. "type": "number"
  9. },
  10. "attrs": {
  11. "type": "object"
  12. },
  13. "insertAt": {
  14. "type": ["string", "object"]
  15. },
  16. "insertInto": {
  17. "anyOf": [
  18. { "type": "string" },
  19. { "instanceof": "Function" }
  20. ]
  21. },
  22. "transform": {
  23. "type": "string"
  24. },
  25. "singleton": {
  26. "type": "boolean"
  27. },
  28. "sourceMap": {
  29. "type": "boolean"
  30. },
  31. "convertToAbsoluteUrls": {
  32. "type": "boolean"
  33. }
  34. },
  35. "additionalProperties": false
  36. }