aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/webpack.conf_unittests.js
diff options
context:
space:
mode:
Diffstat (limited to 'lang/js/webpack.conf_unittests.js')
-rw-r--r--lang/js/webpack.conf_unittests.js20
1 files changed, 11 insertions, 9 deletions
diff --git a/lang/js/webpack.conf_unittests.js b/lang/js/webpack.conf_unittests.js
index 4b903be6..c3c87f39 100644
--- a/lang/js/webpack.conf_unittests.js
+++ b/lang/js/webpack.conf_unittests.js
@@ -19,16 +19,18 @@
*
* This is the configuration file for building the gpgmejs-Library with webpack
*/
+/* global require, module, __dirname */
+
const path = require('path');
module.exports = {
- entry: './unittests.js',
- mode: 'production',
- output: {
- path: path.resolve(__dirname, 'build'),
- filename: 'gpgmejs_unittests.bundle.js',
- libraryTarget: 'var',
- libraryExport: 'default',
- library: 'Gpgmejs_test'
- }
+ entry: './unittests.js',
+ mode: 'production',
+ output: {
+ path: path.resolve(__dirname, 'build'),
+ filename: 'gpgmejs_unittests.bundle.js',
+ libraryTarget: 'var',
+ libraryExport: 'default',
+ library: 'Gpgmejs_test'
+ }
};