summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 6808b3374b60b659437c5a59d157f850de64987f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
  "compileOnSave": true,
  "compilerOptions": {
    "target": "es6",
    "jsx": "react",
    "reactNamespace": "React",
    "experimentalDecorators": true,
    "module": "commonjs",
    "sourceMap": true,
    "lib": [
      "es6",
      "dom"
    ],
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "strict": true,
    "strictPropertyInitialization": false,
    "outDir": "dist/node",
    "noImplicitAny": true,
    "noImplicitThis": true,
    "allowJs": true,
    "checkJs": true,
    "incremental": true,
    "esModuleInterop": true
  },
  "files": [
    "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",
    "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",
    "src/db.ts",
    "src/headless/NodeHttpLib.ts",
    "src/headless/bank.ts",
    "src/headless/clk.ts",
    "src/headless/helpers.ts",
    "src/headless/integrationtest.ts",
    "src/headless/merchant.ts",
    "src/headless/taler-wallet-cli.ts",
    "src/i18n/strings.ts",
    "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/pending.ts",
    "src/operations/recoup.ts",
    "src/operations/refresh.ts",
    "src/operations/refund.ts",
    "src/operations/reserves.ts",
    "src/operations/state.ts",
    "src/operations/tip.ts",
    "src/operations/versions.ts",
    "src/operations/withdraw.ts",
    "src/types/ReserveStatus.ts",
    "src/types/ReserveTransaction.ts",
    "src/types/dbTypes.ts",
    "src/types/history.ts",
    "src/types/notifications.ts",
    "src/types/pending.ts",
    "src/types/schemacore.ts",
    "src/types/talerTypes.ts",
    "src/types/types-test.ts",
    "src/types/walletTypes.ts",
    "src/util/RequestThrottler.ts",
    "src/util/amounts.ts",
    "src/util/assertUnreachable.ts",
    "src/util/asyncMemo.ts",
    "src/util/codec-test.ts",
    "src/util/codec.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/talerconfig.ts",
    "src/util/taleruri-test.ts",
    "src/util/taleruri.ts",
    "src/util/time.ts",
    "src/util/timer.ts",
    "src/util/wire.ts",
    "src/wallet-test.ts",
    "src/wallet.ts",
    "src/webex/background.ts",
    "src/webex/chromeBadge.ts",
    "src/webex/compat.ts",
    "src/webex/i18n.tsx",
    "src/webex/messages.ts",
    "src/webex/notify.ts",
    "src/webex/pages/add-auditor.tsx",
    "src/webex/pages/auditors.tsx",
    "src/webex/pages/benchmark.tsx",
    "src/webex/pages/pay.tsx",
    "src/webex/pages/payback.tsx",
    "src/webex/pages/popup.tsx",
    "src/webex/pages/redirect.js",
    "src/webex/pages/refund.tsx",
    "src/webex/pages/reset-required.tsx",
    "src/webex/pages/return-coins.tsx",
    "src/webex/pages/show-db.ts",
    "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"
  ]
}