webpack.config.js 197 B

1234567891011
  1. var path = require("path")
  2. module.exports = {
  3. "entry": "./lib/index.js"
  4. , "output": {
  5. "path": __dirname + "/build"
  6. , "filename": "xxhash.js"
  7. , "library": "XXH"
  8. , "libraryTarget": "umd"
  9. }
  10. }