mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			349 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			349 B
		
	
	
	
		
			JavaScript
		
	
	
	
| const path = require("path");
 | |
| /** @type {import("../../../../").LoaderDefinition} */
 | |
| module.exports = function () {
 | |
| 	this.callback(null, "module.exports = 'ok';", {
 | |
| 		version: 3,
 | |
| 		file: "/should/be/removed",
 | |
| 		sourceRoot: path.join(__dirname, "folder"),
 | |
| 		sources: ["test1.txt"],
 | |
| 		sourcesContent: ["Test"],
 | |
| 		names: [],
 | |
| 		mappings: "AAAA"
 | |
| 	});
 | |
| };
 |