summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-05-24 00:18:30 -0300
committerSebastian <sebasjm@gmail.com>2022-05-24 00:18:30 -0300
commit3525b210086ccff5be00c943f3760cedc11b66a7 (patch)
treec0af5ad6edeaa4326b57bb3a252bb90477cad7b4 /packages/taler-wallet-webextension
parented466030d1e7a168f60691ba6f7546b975bf8b76 (diff)
downloadwallet-core-3525b210086ccff5be00c943f3760cedc11b66a7.tar.gz
wallet-core-3525b210086ccff5be00c943f3760cedc11b66a7.tar.bz2
wallet-core-3525b210086ccff5be00c943f3760cedc11b66a7.zip
Upgrading pnpm led to compilation errors
Fist: * The inferred type of 'PaymentStatus' cannot be named without a reference to '.pnpm/@types+react@17.0.38.... * The inferred type of 'HistoryRow' cannot be named without a reference to '.pnpm/@types+react@17.0.38/node_modules/@types/react'. This is likely not portable. A type annotation is necessary. and more like that... Second: some problems trying to check type inside libs more related: https://github.com/microsoft/TypeScript/issues/42873
Diffstat (limited to 'packages/taler-wallet-webextension')
-rw-r--r--packages/taler-wallet-webextension/tsconfig.json2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-wallet-webextension/tsconfig.json b/packages/taler-wallet-webextension/tsconfig.json
index 482282871..9d5f05c5e 100644
--- a/packages/taler-wallet-webextension/tsconfig.json
+++ b/packages/taler-wallet-webextension/tsconfig.json
@@ -11,6 +11,8 @@
"moduleResolution": "Node",
"module": "ESNext",
"target": "ES6",
+ "skipLibCheck": true,
+ "preserveSymlinks": true,
"noImplicitAny": true,
"outDir": "lib",
"noEmitOnError": true,