webpack.config.js 379 B

1234567891011121314151617
  1. var webpack = require('webpack');
  2. module.exports = {
  3. entry: __dirname + '/index.js',
  4. output: {
  5. path: __dirname + '/',
  6. filename: 'specs.js'
  7. },
  8. module: {
  9. loaders: [
  10. {test: /\.js$/, loader: 'buble-loader', exclude: /node_modules/}
  11. ]
  12. },
  13. plugins: [
  14. new webpack.optimize.ModuleConcatenationPlugin()
  15. ]
  16. };