18 lines
		
	
	
		
			429 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			429 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
						|
	Author Tobias Koppers @sokra
 | 
						|
*/
 | 
						|
"use strict";
 | 
						|
 | 
						|
const ExternalsPlugin = require("../ExternalsPlugin");
 | 
						|
 | 
						|
const builtins = require("module").builtinModules || Object.keys(process.binding("natives"));
 | 
						|
 | 
						|
class NodeTargetPlugin {
 | 
						|
	apply(compiler) {
 | 
						|
		new ExternalsPlugin("commonjs", builtins).apply(compiler);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
module.exports = NodeTargetPlugin;
 |