2015-12-13 23:47:30 +01:00
|
|
|
{
|
2016-01-18 22:41:25 +01:00
|
|
|
"compilerOptions": {
|
2017-04-24 23:18:15 +02:00
|
|
|
"target": "es5",
|
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": [
|
|
|
|
"ES6",
|
|
|
|
"DOM"
|
|
|
|
],
|
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,
|
2017-05-27 16:44:49 +02:00
|
|
|
"outDir": "build/src/",
|
2017-05-27 18:43:11 +02:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"allowJs": true,
|
2017-05-29 18:27:50 +02:00
|
|
|
"checkJs": true,
|
|
|
|
"noUnusedLocals": true
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
|
|
|
"files": [
|
2016-11-23 00:13:35 +01:00
|
|
|
"decl/chrome/chrome.d.ts",
|
2017-04-20 03:09:25 +02:00
|
|
|
"decl/jed.d.ts",
|
|
|
|
"decl/urijs.d.ts",
|
2016-11-23 00:13:35 +01:00
|
|
|
"src/checkable.ts",
|
2017-05-27 18:43:11 +02:00
|
|
|
"src/crypto/cryptoApi-test.ts",
|
|
|
|
"src/crypto/cryptoApi.ts",
|
|
|
|
"src/crypto/cryptoWorker.ts",
|
|
|
|
"src/crypto/emscInterface-test.ts",
|
|
|
|
"src/crypto/emscInterface.ts",
|
|
|
|
"src/crypto/emscLoader.d.ts",
|
|
|
|
"src/crypto/emscLoader.js",
|
2017-05-27 22:55:52 +02:00
|
|
|
"src/crypto/nodeWorker.ts",
|
|
|
|
"src/crypto/nodeWorkerEntry.ts",
|
|
|
|
"src/crypto/startWorker.js",
|
2016-11-23 00:13:35 +01:00
|
|
|
"src/helpers-test.ts",
|
2016-11-13 23:30:18 +01:00
|
|
|
"src/helpers.ts",
|
|
|
|
"src/http.ts",
|
2016-11-23 00:13:35 +01:00
|
|
|
"src/i18n.tsx",
|
2016-11-27 22:13:24 +01:00
|
|
|
"src/i18n/strings.ts",
|
2016-11-18 04:09:04 +01:00
|
|
|
"src/logging.ts",
|
2017-06-04 01:14:05 +02:00
|
|
|
"src/memidb-test.ts",
|
2017-05-29 01:05:01 +02:00
|
|
|
"src/memidb.ts",
|
2016-11-13 23:30:18 +01:00
|
|
|
"src/query.ts",
|
2017-05-27 22:55:52 +02:00
|
|
|
"src/timer.ts",
|
2016-11-23 00:13:35 +01:00
|
|
|
"src/types-test.ts",
|
2016-11-13 23:30:18 +01:00
|
|
|
"src/types.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",
|
|
|
|
"src/webex/components.ts",
|
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",
|
|
|
|
"src/webex/pages/confirm-contract.tsx",
|
|
|
|
"src/webex/pages/confirm-create-reserve.tsx",
|
|
|
|
"src/webex/pages/error.tsx",
|
|
|
|
"src/webex/pages/logs.tsx",
|
|
|
|
"src/webex/pages/payback.tsx",
|
|
|
|
"src/webex/pages/popup.tsx",
|
|
|
|
"src/webex/pages/show-db.ts",
|
|
|
|
"src/webex/pages/tree.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
|
|
|
}
|