mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
| "use strict";
 | |
| 
 | |
| /** @type {import("../../../").Configuration} */
 | |
| module.exports = {
 | |
| 	mode: "production",
 | |
| 	entry: {
 | |
| 		e1: "./e1",
 | |
| 		e2: "./e2",
 | |
| 		e3: "./e3"
 | |
| 	},
 | |
| 	output: {
 | |
| 		filename: "[name].js"
 | |
| 	},
 | |
| 	stats: {
 | |
| 		hash: false,
 | |
| 		timings: false,
 | |
| 		builtAt: false,
 | |
| 		chunks: true,
 | |
| 		chunkModules: true,
 | |
| 		dependentModules: true,
 | |
| 		modules: false
 | |
| 	}
 | |
| };
 |