No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

HashedModuleIdsPlugin.json 662 B

hace 3 años
1234567891011121314151617181920
  1. {
  2. "type": "object",
  3. "additionalProperties": false,
  4. "properties": {
  5. "hashFunction": {
  6. "description": "The hashing algorithm to use, defaults to 'md5'. All functions from Node.JS' crypto.createHash are supported.",
  7. "type": "string",
  8. "minLength": 1
  9. },
  10. "hashDigest": {
  11. "description": "The encoding to use when generating the hash, defaults to 'base64'. All encodings from Node.JS' hash.digest are supported.",
  12. "enum": ["hex", "latin1", "base64"]
  13. },
  14. "hashDigestLength": {
  15. "description": "The prefix length of the hash digest to use, defaults to 4.",
  16. "type": "number",
  17. "minimum": 1
  18. }
  19. }
  20. }