forked from sheetjs/sheetjs
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			492 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			492 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* xlsx.js (C) 2013-present  SheetJS -- http://sheetjs.com */
 | 
						|
module.exports = {
 | 
						|
	/* ensure that the XLSX variable is exported */
 | 
						|
	output: {
 | 
						|
		libraryTarget: 'var',
 | 
						|
		library: 'XLSX'
 | 
						|
	},
 | 
						|
	/* module.noParse needed for bower */
 | 
						|
	module: {
 | 
						|
		noParse: [
 | 
						|
			/xlsx.core.min.js/,
 | 
						|
			/xlsx.full.min.js/
 | 
						|
		]
 | 
						|
	},
 | 
						|
	/* Uncomment the next block to suppress codepage */
 | 
						|
	/*
 | 
						|
	resolve: {
 | 
						|
		alias: { "./dist/cpexcel.js": "" }
 | 
						|
	},
 | 
						|
	*/
 | 
						|
	/* suppress node shims */
 | 
						|
	node: {
 | 
						|
		process: false,
 | 
						|
		Buffer: false
 | 
						|
	}
 | 
						|
}
 |