mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			8 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
// reexport a CommonJs module
 | 
						|
export * from "./fs";
 | 
						|
// Note that the default export doesn't reexport via export *
 | 
						|
// (this is not interop-specific, it applies for every export *)
 | 
						|
 | 
						|
// Note: reexporting a CommonJs module is a special case,
 | 
						|
// because in this module we have no information about exports
 |