2017-09-05 05:26:50 +00:00
|
|
|
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
2017-03-05 00:56:31 +00:00
|
|
|
module.exports = {
|
2017-09-24 23:40:09 +00:00
|
|
|
/* ensure that the XLSX variable is exported */
|
2017-03-05 00:56:31 +00:00
|
|
|
output: {
|
2021-09-30 17:31:52 +00:00
|
|
|
path: __dirname,
|
2017-03-05 00:56:31 +00:00
|
|
|
libraryTarget: 'var',
|
|
|
|
library: 'XLSX'
|
|
|
|
},
|
2017-08-05 06:32:57 +00:00
|
|
|
/* module.noParse needed for bower */
|
|
|
|
module: {
|
|
|
|
noParse: [
|
|
|
|
/xlsx.core.min.js/,
|
|
|
|
/xlsx.full.min.js/
|
|
|
|
]
|
|
|
|
},
|
2017-06-19 07:14:14 +00:00
|
|
|
/* Uncomment the next block to suppress codepage */
|
|
|
|
/*
|
|
|
|
resolve: {
|
|
|
|
alias: { "./dist/cpexcel.js": "" }
|
|
|
|
},
|
|
|
|
*/
|
2017-09-24 23:40:09 +00:00
|
|
|
/* suppress node shims */
|
2017-03-05 00:56:31 +00:00
|
|
|
node: {
|
2017-04-30 16:27:03 +00:00
|
|
|
process: false,
|
2017-03-05 00:56:31 +00:00
|
|
|
Buffer: false
|
2017-03-10 23:39:17 +00:00
|
|
|
}
|
2021-09-30 17:31:52 +00:00
|
|
|
};
|