loader-options.json 704 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "type": "object",
  3. "additionalProperties": true,
  4. "properties": {
  5. "publicPath": {
  6. "anyOf": [
  7. {
  8. "type": "string"
  9. },
  10. {
  11. "instanceof": "Function"
  12. }
  13. ]
  14. },
  15. "esModule": {
  16. "type": "boolean"
  17. },
  18. "hmr": {
  19. "type": "boolean"
  20. },
  21. "reloadAll": {
  22. "type": "boolean"
  23. },
  24. "modules": {
  25. "type": "object",
  26. "additionalProperties": false,
  27. "properties": {
  28. "namedExport": {
  29. "description": "Enables/disables ES modules named export for locals (https://webpack.js.org/plugins/mini-css-extract-plugin/#namedexport).",
  30. "type": "boolean"
  31. }
  32. }
  33. }
  34. }
  35. }