diff options
author | Florian Dold <florian.dold@gmail.com> | 2020-04-06 21:05:51 +0530 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2020-04-06 21:05:51 +0530 |
commit | 07f25566ca51b7faf6462a57d15f4ebbfc733ab0 (patch) | |
tree | 04e03d831adae4c00ac6a6a19706de4ed6ad7dd3 /tsconfig.json | |
parent | 13bccc7bd982da58738dfd63a2493e476d596161 (diff) |
start spring cleaning, use rollup instead of both webpack and rollup
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 107 |
1 files changed, 6 insertions, 101 deletions
diff --git a/tsconfig.json b/tsconfig.json index f87e16b11..a6fa12f9b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,11 @@ { "compileOnSave": true, "compilerOptions": { - "target": "es6", + "target": "ES6", "jsx": "react", "reactNamespace": "React", - "experimentalDecorators": true, "module": "commonjs", + "moduleResolution": "node", "sourceMap": true, "lib": [ "es6", @@ -21,103 +21,8 @@ "allowJs": true, "checkJs": true, "incremental": true, - "esModuleInterop": true + "esModuleInterop": true, + "importHelpers": 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/reserveHistoryUtil-test.ts", - "src/util/reserveHistoryUtil.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" - ] -}
\ No newline at end of file + "include": ["src/**/*"] +} |