taler-typescript-core

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

commit 3475efa90cbf28e59929611008764bebf204fbce
parent b9ded40e6241eb3bbf706b40a9b8efbc52c13f2f
Author: Florian Dold <florian@dold.me>
Date:   Thu, 18 Jun 2026 11:16:31 +0200

provide top-level tsconfig.json

Diffstat:
Dtsconfig.build.json | 67-------------------------------------------------------------------
Atsconfig.json | 67+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+), 67 deletions(-)

diff --git a/tsconfig.build.json b/tsconfig.build.json @@ -1,67 +0,0 @@ -// Entry point to compile the whole project -// via TypeScript's build mode. -// -// Use it like this: -// ./node_modules/.bin/tsc --build tsconfig.build.json -// -// All packages in the repository should be listed in the -// references below. -{ - "compilerOptions": { - "composite": true - }, - "references": [ - { - "path": "packages/taler-exchange-aml-webui/" - }, - { - "path": "packages/anastasis-cli/" - }, - { - "path": "packages/anastasis-core" - }, - { - "path": "packages/taler-auditor-webui" - }, - { - "path": "packages/libeufin-bank-webui" - }, - { - "path": "packages/challenger-webui/" - }, - { - "path": "packages/idb-bridge/" - }, - { - "path": "packages/taler-exchange-kyc-webui/" - }, - { - "path": "packages/merchant-backend-ui/" - }, - { - "path": "packages/taler-merchant-webui/" - }, - { - "path": "packages/pogen" - }, - { - "path": "packages/taler-harness" - }, - { - "path": "packages/taler-util" - }, - { - "path": "packages/taler-wallet-cli/" - }, - { - "path": "packages/taler-wallet-core/" - }, - { - "path": "packages/taler-wallet-embedded" - }, - { - "path": "packages/taler-wallet-webextension" - } - ], - "files": [] -} diff --git a/tsconfig.json b/tsconfig.json @@ -0,0 +1,67 @@ +// Entry point to compile the whole project +// via TypeScript's build mode. +// +// Use it like this: +// ./node_modules/.bin/tsc --build tsconfig.json +// +// All packages in the repository should be listed in the +// references below. +{ + "compilerOptions": { + "composite": true + }, + "references": [ + { + "path": "packages/taler-exchange-aml-webui/" + }, + { + "path": "packages/anastasis-cli/" + }, + { + "path": "packages/anastasis-core" + }, + { + "path": "packages/taler-auditor-webui" + }, + { + "path": "packages/libeufin-bank-webui" + }, + { + "path": "packages/challenger-webui/" + }, + { + "path": "packages/idb-bridge/" + }, + { + "path": "packages/taler-exchange-kyc-webui/" + }, + { + "path": "packages/merchant-backend-ui/" + }, + { + "path": "packages/taler-merchant-webui/" + }, + { + "path": "packages/pogen" + }, + { + "path": "packages/taler-harness" + }, + { + "path": "packages/taler-util" + }, + { + "path": "packages/taler-wallet-cli/" + }, + { + "path": "packages/taler-wallet-core/" + }, + { + "path": "packages/taler-wallet-embedded" + }, + { + "path": "packages/taler-wallet-webextension" + } + ], + "files": [] +}