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.

20 lines
481 B

4 years ago
  1. {
  2. "anyOf": [
  3. {
  4. "type": "object",
  5. "description": "A webpack configuration object."
  6. },
  7. {
  8. "type": "array",
  9. "description": "An array of webpack configuration objects.",
  10. "items": {
  11. "description": "A webpack configuration object.",
  12. "type": "object"
  13. }
  14. },
  15. {
  16. "instanceof": "Promise",
  17. "description": "A promise that resolves with a configuration object, or an array of configuration objects."
  18. }
  19. ]
  20. }