taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 8b463f3de515dbc789084369f21d96d7e41164f8
parent 592961cda4e7fb5d936aaffac772b2e7beb5b749
Author: Florian Dold <florian@dold.me>
Date:   Mon, 18 May 2026 00:16:49 +0200

tsconfig: skipLibCheck to true

Diffstat:
Mtsconfig.defaults.json | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tsconfig.defaults.json b/tsconfig.defaults.json @@ -27,6 +27,7 @@ "esModuleInterop": true, // This is vital for exports in package.json of // packages in this repo to work. - "preserveSymlinks": true + "preserveSymlinks": true, + "skipLibCheck": true, } }