We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5332ae commit 4f3c9e8Copy full SHA for 4f3c9e8
packages/cli-repl/webpack.config.js
@@ -82,6 +82,11 @@ const config = {
82
...Object.fromEntries(
83
Module.builtinModules.map((m) => [`node:${m}`, `commonjs2 ${m}`])
84
), // node: builtin specifiers need to be always declared as externals in webpack right now
85
+ // mongodb-client-encryption fixup until NODE-6670 is done
86
+ '../build/Release/mongocrypt.node':
87
+ 'commonjs2 ../build/Release/mongocrypt.node',
88
+ '../build/Debug/mongocrypt.node':
89
+ 'commonjs2 ../build/Debug/mongocrypt.node',
90
},
91
92
externalsPresets: {
0 commit comments