mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			376 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			376 B
		
	
	
	
		
			JavaScript
		
	
	
	
| "use strict";
 | |
| 
 | |
| /** @type {import("../../../../").Configuration[]} */
 | |
| module.exports = [
 | |
| 	{
 | |
| 		entry: ["./index1.js", "./index2.js"],
 | |
| 		output: {
 | |
| 			module: true
 | |
| 		},
 | |
| 		optimization: {
 | |
| 			concatenateModules: true
 | |
| 		},
 | |
| 		experiments: {
 | |
| 			outputModule: true
 | |
| 		},
 | |
| 		target: "es2020"
 | |
| 	},
 | |
| 	{
 | |
| 		name: "test-output",
 | |
| 		entry: "./test.js",
 | |
| 		output: {
 | |
| 			filename: "test.js"
 | |
| 		}
 | |
| 	}
 | |
| ];
 |