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.
 
 
 
 

19 lines
317 B

  1. module.exports = {
  2. entry: './src/index.js',
  3. output: {
  4. path: __dirname,
  5. filename: './dist/index.js',
  6. libraryTarget: 'commonjs2',
  7. library: 'react-attr'
  8. },
  9. module: {
  10. loaders: [
  11. {
  12. test: /\.js$/,
  13. loader: 'babel-loader',
  14. exclude: /node_modules/
  15. }
  16. ]
  17. }
  18. }