diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-29 02:44:28 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-29 02:44:28 +0200 |
commit | 3f01c9490bd6932aa991ecd86e8aaacecb911efc (patch) | |
tree | 2f5d94feca2ac56110049c09614c0274970c6812 /src/crypto | |
parent | 5b90311befce19a4afd1fd778e5f23674e7b2eb1 (diff) |
adjust webpack config to exclude node modules
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/emscLoader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/emscLoader.js b/src/crypto/emscLoader.js index 190f007f1..eee2c8000 100644 --- a/src/crypto/emscLoader.js +++ b/src/crypto/emscLoader.js @@ -35,7 +35,7 @@ export function getLib() { // Make sure that TypeScript doesn't try // to check the taler-emscripten-lib. const indirectRequire = require; - const g = global as any; + const g = global; // unavoidable hack, so that emscripten detects // the environment as node even though importScripts // is present. |