From c3f09f49314a8f305f305e0a4bde7c148fc9322a Mon Sep 17 00:00:00 2001 From: Aleksander Rem Date: Wed, 26 Jan 2022 23:28:50 +0100 Subject: [PATCH] Apparently latest ledgerjs node-hid package requires esModuleInterop: true --- desktop-app/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop-app/tsconfig.json b/desktop-app/tsconfig.json index efd8e1e..5e09e85 100644 --- a/desktop-app/tsconfig.json +++ b/desktop-app/tsconfig.json @@ -5,6 +5,7 @@ "sourceMap": true, "declaration": false, "moduleResolution": "node", + "esModuleInterop": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es5",