diff options
Diffstat (limited to 'devtools/client/shared/vendor/micromatch/webpack.config.js')
-rw-r--r-- | devtools/client/shared/vendor/micromatch/webpack.config.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devtools/client/shared/vendor/micromatch/webpack.config.js b/devtools/client/shared/vendor/micromatch/webpack.config.js new file mode 100644 index 0000000000..f7f9107c30 --- /dev/null +++ b/devtools/client/shared/vendor/micromatch/webpack.config.js @@ -0,0 +1,20 @@ + +const path = require("path"); + +module.exports = [{ + mode: "production", + entry: `./node_modules/micromatch/index.js`, + optimization: { + minimize: false + }, + output: { + path: __dirname, + filename: `micromatch.js`, + library: "micromatch", + libraryTarget: "commonjs" + }, + node: { + util: true, + path: true + } +}];
\ No newline at end of file |