summaryrefslogtreecommitdiff
path: root/node_modules/iso-639-1/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/iso-639-1/webpack.config.js')
-rw-r--r--node_modules/iso-639-1/webpack.config.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/node_modules/iso-639-1/webpack.config.js b/node_modules/iso-639-1/webpack.config.js
new file mode 100644
index 0000000..1fff0a0
--- /dev/null
+++ b/node_modules/iso-639-1/webpack.config.js
@@ -0,0 +1,20 @@
+const path = require('path');
+const { CleanWebpackPlugin } = require('clean-webpack-plugin');
+
+// webpack configuration
+let webpackConfig = {
+ mode: 'production',
+ entry: {
+ index: './src/index.js',
+ },
+ output: {
+ path: path.resolve(__dirname, `./build`),
+ filename: '[name].js',
+ library: 'ISO6391',
+ },
+ plugins: [
+ new CleanWebpackPlugin(),
+ ],
+};
+
+module.exports = webpackConfig;