12345678910111213141516171819202122232425262728293031323334 |
- const path = require('path');
- const HtmlWebpackPlugin = require('html-webpack-plugin');
- const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
- .BundleAnalyzerPlugin;
- module.exports = {
- entry: './src/index.tsx',
- resolve: {
- extensions: ['.ts', '.tsx', '.js']
- },
- output: {
- path: path.join(__dirname, 'dist'),
- filename: 'bundle.min.js',
- library: 'SimpleWebRTC',
- libraryExport: 'default'
- },
- module: {
- rules: [
- {
- test: /\.tsx?$/,
- loader: 'awesome-typescript-loader'
- }
- ]
- },
- plugins: [
- new HtmlWebpackPlugin({
- template: './public/index.html',
- inject: 'head'
- }),
- new BundleAnalyzerPlugin({
- analyzerMode: process.env.ANALYZE ? 'server' : 'disabled'
- })
- ]
- };
|