mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			306 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			306 B
		
	
	
	
		
			JavaScript
		
	
	
	
| "use strict";
 | |
| 
 | |
| const path = require("path");
 | |
| 
 | |
| module.exports = {
 | |
| 	// mode: "development" || "production",
 | |
| 	entry: {
 | |
| 		alpha: "./alpha",
 | |
| 		beta: "./beta"
 | |
| 	},
 | |
| 	output: {
 | |
| 		path: path.join(__dirname, "dist"),
 | |
| 		filename: "MyLibrary.[name].js",
 | |
| 		library: ["MyLibrary", "[name]"],
 | |
| 		libraryTarget: "umd"
 | |
| 	}
 | |
| };
 |