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.

40 lines
968 B

4 years ago
  1. {
  2. "type": "object",
  3. "additionalProperties": false,
  4. "properties": {
  5. "allChunks": {
  6. "description": "",
  7. "type": "boolean"
  8. },
  9. "disable": {
  10. "description": "",
  11. "type": "boolean"
  12. },
  13. "fallback": {
  14. "description": "A loader that webpack can fall back to if the original one fails.",
  15. "modes": {
  16. "type": ["string", "object", "array"]
  17. }
  18. },
  19. "filename": {
  20. "description": "The filename and path that ExtractTextPlugin will extract to",
  21. "modes": {
  22. "type": ["string", "function"]
  23. }
  24. },
  25. "ignoreOrder": {
  26. "description": "Ignore dependency order (useful for CSS Modules)",
  27. "type": "boolean"
  28. },
  29. "loader": {
  30. "description": "The loader that ExtractTextPlugin will attempt to load through.",
  31. "modes": {
  32. "type": ["string", "object", "array"]
  33. }
  34. },
  35. "publicPath": {
  36. "description": "",
  37. "type": "string"
  38. }
  39. }
  40. }