webpack.config.js 767 B

12345678910111213141516171819202122232425262728293031323334
  1. const path = require('path');
  2. const HtmlWebpackPlugin = require('html-webpack-plugin');
  3. const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
  4. .BundleAnalyzerPlugin;
  5. module.exports = {
  6. entry: './src/index.tsx',
  7. resolve: {
  8. extensions: ['.ts', '.tsx', '.js']
  9. },
  10. output: {
  11. path: path.join(__dirname, 'dist'),
  12. filename: 'bundle.min.js',
  13. library: 'SimpleWebRTC',
  14. libraryExport: 'default'
  15. },
  16. module: {
  17. rules: [
  18. {
  19. test: /\.tsx?$/,
  20. loader: 'awesome-typescript-loader'
  21. }
  22. ]
  23. },
  24. plugins: [
  25. new HtmlWebpackPlugin({
  26. template: './public/index.html',
  27. inject: 'head'
  28. }),
  29. new BundleAnalyzerPlugin({
  30. analyzerMode: process.env.ANALYZE ? 'server' : 'disabled'
  31. })
  32. ]
  33. };