mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 16:07:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			541 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			541 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const path = require('path');
 | |
| 
 | |
| module.exports = (env = {}) => ({
 | |
|   mode: 'production',
 | |
|   entry: {
 | |
|     app: ['./src/index.js']
 | |
|   },
 | |
|   output: {
 | |
|     library: 'd3tooltip',
 | |
|     libraryTarget: 'umd',
 | |
|     path: path.resolve(__dirname, 'dist'),
 | |
|     filename: env.minimize ? 'd3tooltip.min.js' : 'd3tooltip.js'
 | |
|   },
 | |
|   module: {
 | |
|     rules: [
 | |
|       {
 | |
|         test: /\.js$/,
 | |
|         loader: 'babel-loader',
 | |
|         exclude: /node_modules/
 | |
|       }
 | |
|     ]
 | |
|   },
 | |
|   optimization: {
 | |
|     minimize: !!env.minimize
 | |
|   },
 | |
|   performance: {
 | |
|     hints: false
 | |
|   }
 | |
| });
 |