You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 rivejä
446 B

  1. const path = require('path');
  2. const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
  3. module.exports = {
  4. entry: "./jalali-moment.js", // string | object | array
  5. output: {
  6. path: path.resolve(__dirname, "dist"), // string
  7. filename: "jalali-moment.browser.js", // string
  8. library: "moment", // string,
  9. },
  10. plugins: [
  11. // new UglifyJSPlugin()
  12. ],
  13. mode: 'production',
  14. devtool: 'source-map'
  15. }