options.json 432 B

12345678910111213141516171819202122
  1. {
  2. "additionalProperties": true,
  3. "properties": {
  4. "publicPath": {
  5. "anyOf": [
  6. {
  7. "type": "string"
  8. },
  9. {
  10. "instanceof": "Function"
  11. }
  12. ]
  13. },
  14. "esModule": {
  15. "type": "boolean"
  16. }
  17. },
  18. "errorMessages": {
  19. "publicPath": "should be {String} or {Function} (https://github.com/webpack-contrib/mini-css-extract-plugin#publicpath)"
  20. },
  21. "type": "object"
  22. }