summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-16 15:03:52 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-16 15:03:52 +0200
commita1e0fc3b88ed4305f942fadbea66b29a3934721c (patch)
treecb4887bdb68f76eeeb7c4baecc47e5ceb2d4498c /webpack.config.js
parent8f5b6ffd7d02986176c95c8800a8292555e2702b (diff)
downloadwallet-core-a1e0fc3b88ed4305f942fadbea66b29a3934721c.tar.gz
wallet-core-a1e0fc3b88ed4305f942fadbea66b29a3934721c.tar.bz2
wallet-core-a1e0fc3b88ed4305f942fadbea66b29a3934721c.zip
crypto worker refactoring
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 845b56fe2..550146184 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -27,8 +27,7 @@ module.exports = function (env) {
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader',
- exclude: /node_modules/,
- exclude: /taler-emscripten-lib/,
+ exclude: /node_modules|taler-emscripten-lib|nodeEmscriptenLoader|synchronousWorker/,
}
]
},
@@ -58,7 +57,7 @@ module.exports = function (env) {
}
}
const configWebWorker = {
- entry: {"cryptoWorker": "./src/crypto/cryptoWorker.ts"},
+ entry: {"cryptoWorker": "./src/crypto/browserWorkerEntry.ts"},
target: "webworker",
name: "webworker",
};