You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
381 B
23 lines
381 B
module.exports = {
|
|
entry: './src/index.js',
|
|
output: {
|
|
filename: './dist/table2excel.min.js',
|
|
library: 'Table2Excel',
|
|
libraryTarget: 'umd',
|
|
libraryExport: 'default'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
use: [
|
|
'babel-loader',
|
|
],
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
},
|
|
node: {
|
|
fs: 'empty'
|
|
}
|
|
};
|
|
|