2015-12-13 23:47:30 +01:00
|
|
|
{
|
2018-01-03 14:42:06 +01:00
|
|
|
"compileOnSave": true,
|
2016-01-18 22:41:25 +01:00
|
|
|
"compilerOptions": {
|
2017-10-15 18:55:34 +02:00
|
|
|
"target": "es6",
|
2016-01-18 22:41:25 +01:00
|
|
|
"jsx": "react",
|
2016-11-13 08:16:12 +01:00
|
|
|
"reactNamespace": "React",
|
2016-01-18 22:41:25 +01:00
|
|
|
"experimentalDecorators": true,
|
2017-04-20 03:09:25 +02:00
|
|
|
"module": "commonjs",
|
2016-01-18 22:41:25 +01:00
|
|
|
"sourceMap": true,
|
2017-04-20 03:09:25 +02:00
|
|
|
"lib": [
|
2018-01-03 14:42:06 +01:00
|
|
|
"es6",
|
|
|
|
"dom"
|
2017-04-20 03:09:25 +02:00
|
|
|
],
|
2016-02-10 02:03:31 +01:00
|
|
|
"noImplicitReturns": true,
|
2016-09-12 17:41:12 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-05-27 16:31:11 +02:00
|
|
|
"strict": true,
|
2018-09-20 02:56:13 +02:00
|
|
|
"strictPropertyInitialization": false,
|
2019-08-14 18:25:30 +02:00
|
|
|
"outDir": "dist/node",
|
2017-05-27 18:43:11 +02:00
|
|
|
"noImplicitAny": true,
|
2019-12-14 17:23:31 +01:00
|
|
|
"noImplicitThis": true,
|
2017-05-27 18:43:11 +02:00
|
|
|
"allowJs": true,
|
2017-05-29 18:27:50 +02:00
|
|
|
"checkJs": true,
|
2019-08-29 23:12:55 +02:00
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
|
|
|
"files": [
|
2019-08-18 23:06:27 +02:00
|
|
|
"src/android/index.ts",
|
2019-11-28 00:46:34 +01:00
|
|
|
"src/crypto/primitives/kdf.ts",
|
|
|
|
"src/crypto/primitives/nacl-fast.ts",
|
|
|
|
"src/crypto/primitives/sha256.ts",
|
2019-11-27 17:59:51 +01:00
|
|
|
"src/crypto/talerCrypto-test.ts",
|
|
|
|
"src/crypto/talerCrypto.ts",
|
2019-12-05 19:38:19 +01:00
|
|
|
"src/crypto/workers/browserWorkerEntry.ts",
|
|
|
|
"src/crypto/workers/cryptoApi.ts",
|
|
|
|
"src/crypto/workers/cryptoImplementation.ts",
|
|
|
|
"src/crypto/workers/cryptoWorker.ts",
|
|
|
|
"src/crypto/workers/nodeThreadWorker.ts",
|
|
|
|
"src/crypto/workers/synchronousWorker.ts",
|
2019-07-21 23:50:10 +02:00
|
|
|
"src/db.ts",
|
2019-12-15 17:48:22 +01:00
|
|
|
"src/headless/NodeHttpLib.ts",
|
2019-08-16 23:29:29 +02:00
|
|
|
"src/headless/bank.ts",
|
2019-11-19 16:16:12 +01:00
|
|
|
"src/headless/clk.ts",
|
2019-08-16 23:29:29 +02:00
|
|
|
"src/headless/helpers.ts",
|
2019-08-18 19:42:21 +02:00
|
|
|
"src/headless/integrationtest.ts",
|
|
|
|
"src/headless/merchant.ts",
|
2019-07-21 23:50:10 +02:00
|
|
|
"src/headless/taler-wallet-cli.ts",
|
2016-11-27 22:13:24 +01:00
|
|
|
"src/i18n/strings.ts",
|
2019-08-14 18:49:56 +02:00
|
|
|
"src/index.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/operations/balance.ts",
|
|
|
|
"src/operations/errors.ts",
|
|
|
|
"src/operations/exchanges.ts",
|
|
|
|
"src/operations/history.ts",
|
|
|
|
"src/operations/pay.ts",
|
|
|
|
"src/operations/payback.ts",
|
|
|
|
"src/operations/pending.ts",
|
|
|
|
"src/operations/refresh.ts",
|
2019-12-15 19:04:14 +01:00
|
|
|
"src/operations/refund.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/operations/reserves.ts",
|
|
|
|
"src/operations/state.ts",
|
|
|
|
"src/operations/tip.ts",
|
2019-12-16 16:59:09 +01:00
|
|
|
"src/operations/versions.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/operations/withdraw.ts",
|
2019-12-16 12:53:22 +01:00
|
|
|
"src/types/ReserveStatus.ts",
|
|
|
|
"src/types/ReserveTransaction.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/types/dbTypes.ts",
|
|
|
|
"src/types/history.ts",
|
|
|
|
"src/types/notifications.ts",
|
|
|
|
"src/types/pending.ts",
|
2019-12-19 13:48:37 +01:00
|
|
|
"src/types/schemacore.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/types/talerTypes.ts",
|
|
|
|
"src/types/types-test.ts",
|
|
|
|
"src/types/walletTypes.ts",
|
2019-12-09 13:29:11 +01:00
|
|
|
"src/util/RequestThrottler.ts",
|
2019-12-02 00:42:40 +01:00
|
|
|
"src/util/amounts.ts",
|
|
|
|
"src/util/assertUnreachable.ts",
|
|
|
|
"src/util/asyncMemo.ts",
|
2019-12-14 17:23:31 +01:00
|
|
|
"src/util/codec-test.ts",
|
|
|
|
"src/util/codec.ts",
|
2019-12-02 00:42:40 +01:00
|
|
|
"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",
|
2019-12-19 20:42:49 +01:00
|
|
|
"src/util/time.ts",
|
2019-12-02 00:42:40 +01:00
|
|
|
"src/util/timer.ts",
|
|
|
|
"src/util/wire.ts",
|
2016-11-23 00:13:35 +01:00
|
|
|
"src/wallet-test.ts",
|
2016-11-13 23:30:18 +01:00
|
|
|
"src/wallet.ts",
|
2017-05-28 23:15:41 +02:00
|
|
|
"src/webex/background.ts",
|
|
|
|
"src/webex/chromeBadge.ts",
|
2018-01-29 22:58:47 +01:00
|
|
|
"src/webex/compat.ts",
|
2019-12-12 20:53:15 +01:00
|
|
|
"src/webex/i18n.tsx",
|
2017-05-30 18:33:28 +02:00
|
|
|
"src/webex/messages.ts",
|
2017-05-28 23:15:41 +02:00
|
|
|
"src/webex/notify.ts",
|
|
|
|
"src/webex/pages/add-auditor.tsx",
|
|
|
|
"src/webex/pages/auditors.tsx",
|
2018-09-20 02:56:13 +02:00
|
|
|
"src/webex/pages/benchmark.tsx",
|
2019-08-29 23:12:55 +02:00
|
|
|
"src/webex/pages/pay.tsx",
|
2017-05-28 23:15:41 +02:00
|
|
|
"src/webex/pages/payback.tsx",
|
|
|
|
"src/webex/pages/popup.tsx",
|
2018-04-09 00:20:46 +02:00
|
|
|
"src/webex/pages/redirect.js",
|
2017-10-15 18:30:02 +02:00
|
|
|
"src/webex/pages/refund.tsx",
|
2017-06-05 03:20:28 +02:00
|
|
|
"src/webex/pages/reset-required.tsx",
|
2017-08-14 04:16:12 +02:00
|
|
|
"src/webex/pages/return-coins.tsx",
|
2017-05-28 23:15:41 +02:00
|
|
|
"src/webex/pages/show-db.ts",
|
2017-11-30 04:07:36 +01:00
|
|
|
"src/webex/pages/tip.tsx",
|
2019-09-05 16:10:53 +02:00
|
|
|
"src/webex/pages/welcome.tsx",
|
2019-08-29 23:12:55 +02:00
|
|
|
"src/webex/pages/withdraw.tsx",
|
2017-05-28 23:15:41 +02:00
|
|
|
"src/webex/renderHtml.tsx",
|
|
|
|
"src/webex/wxApi.ts",
|
2019-12-02 00:42:40 +01:00
|
|
|
"src/webex/wxBackend.ts"
|
2016-01-18 22:41:25 +01:00
|
|
|
]
|
2017-05-31 11:29:15 +02:00
|
|
|
}
|