mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			444 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			444 B
		
	
	
	
		
			JavaScript
		
	
	
	
"use strict";
 | 
						|
 | 
						|
const webpack = require("../../../../");
 | 
						|
 | 
						|
/** @type {import("../../../../").Configuration} */
 | 
						|
module.exports = {
 | 
						|
	mode: "development",
 | 
						|
	devtool: false,
 | 
						|
	node: {
 | 
						|
		__dirname: false,
 | 
						|
		__filename: false
 | 
						|
	},
 | 
						|
	entry: {
 | 
						|
		bundle0: ["./index.js"],
 | 
						|
		vendors: ["./vendors.js"]
 | 
						|
	},
 | 
						|
	output: {
 | 
						|
		filename: "[name].js"
 | 
						|
	},
 | 
						|
	plugins: [
 | 
						|
		new webpack.SourceMapDevToolPlugin({
 | 
						|
			filename: "[file].map",
 | 
						|
			exclude: ["vendors.js"]
 | 
						|
		})
 | 
						|
	]
 | 
						|
};
 |