Skip to main content
Module

x/sheetjs/demos/webpack/webpack.config.js

πŸ“— SheetJS Community Edition -- Spreadsheet Data Toolkit
Extremely Popular
Go to Latest
File
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */module.exports = { /* ensure that the XLSX variable is exported */ output: { path: __dirname, 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 }};