Initial Commit
This commit is contained in:
23
node_modules/sift/webpack.config.js
generated
vendored
Normal file
23
node_modules/sift/webpack.config.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
const {resolve} = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
module.exports = {
|
||||
devtool: 'none',
|
||||
mode: 'production',
|
||||
entry: {
|
||||
index: [__dirname + '/lib/index.js']
|
||||
},
|
||||
output: {
|
||||
path: __dirname,
|
||||
library: 'sift',
|
||||
libraryTarget: 'umd',
|
||||
filename: 'sift.min.js'
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js']
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
]
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user