wallet-core/tsconfig.json

112 lines
3.2 KiB
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
"compileOnSave": true,
2016-01-18 22:41:25 +01:00
"compilerOptions": {
"target": "es6",
2016-01-18 22:41:25 +01:00
"jsx": "react",
"reactNamespace": "React",
2016-01-18 22:41:25 +01:00
"experimentalDecorators": true,
"module": "commonjs",
2016-01-18 22:41:25 +01:00
"sourceMap": true,
"lib": [
"es6",
"dom"
],
2016-02-10 02:03:31 +01:00
"noImplicitReturns": true,
2016-09-12 17:41:12 +02:00
"noFallthroughCasesInSwitch": true,
"strict": true,
2018-09-20 02:56:13 +02:00
"strictPropertyInitialization": false,
2019-08-14 18:25:30 +02:00
"outDir": "dist/node",
"noImplicitAny": true,
"allowJs": true,
"checkJs": true,
"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",
"src/crypto/primitives/kdf.ts",
"src/crypto/primitives/nacl-fast.ts",
"src/crypto/primitives/sha256.ts",
"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-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",
"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",
"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",
"src/operations/reserves.ts",
"src/operations/return.ts",
"src/operations/state.ts",
"src/operations/tip.ts",
"src/operations/withdraw.ts",
"src/types/dbTypes.ts",
"src/types/history.ts",
"src/types/notifications.ts",
"src/types/pending.ts",
"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",
"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-test.ts",
2016-11-13 23:30:18 +01:00
"src/wallet.ts",
"src/webex/background.ts",
"src/webex/chromeBadge.ts",
"src/webex/compat.ts",
"src/webex/i18n.tsx",
2017-05-30 18:33:28 +02:00
"src/webex/messages.ts",
"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",
"src/webex/pages/pay.tsx",
"src/webex/pages/payback.tsx",
"src/webex/pages/popup.tsx",
2018-04-09 00:20:46 +02:00
"src/webex/pages/redirect.js",
"src/webex/pages/refund.tsx",
2017-06-05 03:20:28 +02:00
"src/webex/pages/reset-required.tsx",
"src/webex/pages/return-coins.tsx",
"src/webex/pages/show-db.ts",
2017-11-30 04:07:36 +01:00
"src/webex/pages/tip.tsx",
"src/webex/pages/welcome.tsx",
"src/webex/pages/withdraw.tsx",
"src/webex/renderHtml.tsx",
"src/webex/wxApi.ts",
"src/webex/wxBackend.ts"
2016-01-18 22:41:25 +01:00
]
2017-05-31 11:29:15 +02:00
}