forked from sheetjs/sheetjs
		
	- dist scripts properly export library - XLS/XLSB formulae quote sheet names containing spaces - skipHidden ported to streaming CSV write - updated codepage to 1.11.0 - flow and TS updates - webpack demo example using dist scripts - requirejs demo
		
			
				
	
	
		
			25 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			367 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
| 	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": "" }
 | |
| 	},
 | |
| 	*/
 | |
| 	node: {
 | |
| 		fs: false,
 | |
| 		process: false,
 | |
| 		Buffer: false
 | |
| 	}
 | |
| }
 |