summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-12-02 00:42:40 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-12-02 00:42:40 +0100
commite1369ff7e8fc02116b9c4261036f0e42e3423cf4 (patch)
treec621067ebda8977a888bfed34b7bbecf64b3b0f0 /tsconfig.json
parentaaf7e1338d6cdb1b4e01ad318938b3eaea2f922b (diff)
downloadwallet-core-e1369ff7e8fc02116b9c4261036f0e42e3423cf4.tar.gz
wallet-core-e1369ff7e8fc02116b9c4261036f0e42e3423cf4.tar.bz2
wallet-core-e1369ff7e8fc02116b9c4261036f0e42e3423cf4.zip
the giant refactoring: split wallet into multiple parts
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json47
1 files changed, 32 insertions, 15 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 8df947649..75214637e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -23,9 +23,7 @@
"esModuleInterop": true
},
"files": [
- "src/amounts.ts",
"src/android/index.ts",
- "src/checkable.ts",
"src/crypto/browserWorkerEntry.ts",
"src/crypto/cryptoApi.ts",
"src/crypto/cryptoImplementation.ts",
@@ -46,22 +44,42 @@
"src/headless/integrationtest.ts",
"src/headless/merchant.ts",
"src/headless/taler-wallet-cli.ts",
- "src/helpers-test.ts",
- "src/helpers.ts",
- "src/http.ts",
"src/i18n.tsx",
"src/i18n/strings.ts",
"src/index.ts",
- "src/libtoolVersion-test.ts",
- "src/libtoolVersion.ts",
- "src/logging.ts",
- "src/promiseUtils.ts",
- "src/query.ts",
"src/talerTypes.ts",
- "src/taleruri-test.ts",
- "src/taleruri.ts",
- "src/timer.ts",
"src/types-test.ts",
+ "src/util/amounts.ts",
+ "src/util/assertUnreachable.ts",
+ "src/util/asyncMemo.ts",
+ "src/util/checkable.ts",
+ "src/util/helpers-test.ts",
+ "src/util/helpers.ts",
+ "src/util/http.ts",
+ "src/util/libtoolVersion-test.ts",
+ "src/util/libtoolVersion.ts",
+ "src/util/logging.ts",
+ "src/util/payto-test.ts",
+ "src/util/payto.ts",
+ "src/util/promiseUtils.ts",
+ "src/util/query.ts",
+ "src/util/taleruri-test.ts",
+ "src/util/taleruri.ts",
+ "src/util/timer.ts",
+ "src/util/wire.ts",
+ "src/wallet-impl/balance.ts",
+ "src/wallet-impl/exchanges.ts",
+ "src/wallet-impl/history.ts",
+ "src/wallet-impl/pay.ts",
+ "src/wallet-impl/payback.ts",
+ "src/wallet-impl/pending.ts",
+ "src/wallet-impl/refresh.ts",
+ "src/wallet-impl/refund.ts",
+ "src/wallet-impl/reserves.ts",
+ "src/wallet-impl/return.ts",
+ "src/wallet-impl/state.ts",
+ "src/wallet-impl/tip.ts",
+ "src/wallet-impl/withdraw.ts",
"src/wallet-test.ts",
"src/wallet.ts",
"src/walletTypes.ts",
@@ -86,7 +104,6 @@
"src/webex/pages/withdraw.tsx",
"src/webex/renderHtml.tsx",
"src/webex/wxApi.ts",
- "src/webex/wxBackend.ts",
- "src/wire.ts"
+ "src/webex/wxBackend.ts"
]
} \ No newline at end of file