plugin-options.json 582 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "type": "object",
  3. "additionalProperties": true,
  4. "properties": {
  5. "filename": {
  6. "type": "string"
  7. },
  8. "chunkFilename": {
  9. "type": "string"
  10. },
  11. "moduleFilename": {
  12. "instanceof": "Function"
  13. },
  14. "ignoreOrder": {
  15. "type": "boolean"
  16. },
  17. "insert": {
  18. "description": "Inserts `<link>` at the given position (https://github.com/faceyspacey/extract-css-chunks-webpack-pluginn#insert).",
  19. "anyOf": [
  20. {
  21. "type": "string"
  22. },
  23. {
  24. "instanceof": "Function"
  25. }
  26. ]
  27. }
  28. }
  29. }