wallet-core/tsconfig.json

39 lines
964 B
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
2016-01-18 22:41:25 +01:00
"compilerOptions": {
2016-09-14 15:20:18 +02:00
"target": "es6",
2016-01-18 22:41:25 +01:00
"jsx": "react",
"experimentalDecorators": true,
"module": "system",
"sourceMap": true,
2016-02-10 02:03:31 +01:00
"noLib": true,
"noImplicitReturns": true,
2016-09-12 17:41:12 +02:00
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"noImplicitAny": true
2016-01-18 22:41:25 +01:00
},
"files": [
"lib/i18n.ts",
2016-01-18 22:41:25 +01:00
"lib/refs.ts",
2016-09-06 14:39:45 +02:00
"lib/shopApi.ts",
2016-02-09 21:56:06 +01:00
"lib/wallet/checkable.ts",
2016-02-22 19:21:06 +01:00
"lib/wallet/cryptoApi.ts",
2016-02-19 00:49:22 +01:00
"lib/wallet/cryptoLib.ts",
"lib/wallet/cryptoWorker.ts",
2016-01-20 18:09:58 +01:00
"lib/wallet/db.ts",
"lib/wallet/emscriptif.ts",
"lib/wallet/helpers.ts",
2016-01-20 18:09:58 +01:00
"lib/wallet/http.ts",
"lib/wallet/query.ts",
"lib/wallet/types.ts",
2016-01-20 18:09:58 +01:00
"lib/wallet/wallet.ts",
2016-02-19 04:23:00 +01:00
"lib/wallet/wxApi.ts",
"lib/wallet/wxMessaging.ts",
2016-01-18 22:41:25 +01:00
"background/main.ts",
"content_scripts/notify.ts",
"popup/popup.tsx",
2016-02-09 21:56:06 +01:00
"pages/show-db.ts",
2016-01-18 22:41:25 +01:00
"pages/confirm-contract.tsx",
"pages/confirm-create-reserve.tsx",
"test/tests/taler.ts"
]
2016-04-27 01:46:18 +02:00
}