taler-typescript-core

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

tsconfig.build.json (1248B)


      1 // Entry point to compile the whole project
      2 // via TypeScript's build mode.
      3 //
      4 // Use it like this:
      5 // ./node_modules/.bin/tsc --build tsconfig.build.json
      6 //
      7 // All packages in the repository should be listed in the
      8 // references below.
      9 {
     10   "compilerOptions": {
     11     "composite": true
     12   },
     13   "references": [
     14     {
     15       "path": "packages/aml-backoffice-ui/"
     16     },
     17     {
     18       "path": "packages/anastasis-cli/"
     19     },
     20     {
     21       "path": "packages/anastasis-core"
     22     },
     23     {
     24       "path": "packages/auditor-backoffice-ui"
     25     },
     26     {
     27       "path": "packages/bank-ui"
     28     },
     29     {
     30       "path": "packages/challenger-ui/"
     31     },
     32     {
     33       "path": "packages/idb-bridge/"
     34     },
     35     {
     36       "path": "packages/kyc-ui/"
     37     },
     38     {
     39       "path": "packages/merchant-backend-ui/"
     40     },
     41     {
     42       "path": "packages/merchant-backoffice-ui/"
     43     },
     44     {
     45       "path": "packages/pogen"
     46     },
     47     {
     48       "path": "packages/taler-harness"
     49     },
     50     {
     51       "path": "packages/taler-util"
     52     },
     53     {
     54       "path": "packages/taler-wallet-cli/"
     55     },
     56     {
     57       "path": "packages/taler-wallet-core/"
     58     },
     59     {
     60       "path": "packages/taler-wallet-embedded"
     61     },
     62     {
     63       "path": "packages/taler-wallet-webextension"
     64     }
     65   ],
     66   "files": []
     67 }