wallet-core/extension/tsconfig.json

31 lines
781 B
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
"compilerOptions": {
"target": "es5",
2016-01-05 15:42:46 +01:00
"jsx": "react",
"experimentalDecorators": true,
"module": "system",
"noLib": true,
"sourceMap": true
2015-12-13 23:47:30 +01:00
},
"files": [
"lib/refs.ts",
"lib/wallet/wallet.ts",
"lib/wallet/emscriptif.ts",
"lib/wallet/db.ts",
"lib/wallet/query.ts",
"lib/wallet/http.ts",
"lib/wallet/checkable.ts",
"lib/wallet/wxmessaging.ts",
"lib/wallet/types.ts",
"lib/commonHelpers.ts",
2015-12-20 20:05:06 +01:00
"lib/polyfill-react.ts",
"content_scripts/notify.ts",
"background/main.ts",
2015-12-16 10:45:16 +01:00
"popup/balance-overview.tsx",
"popup/history.tsx",
2015-12-20 20:05:06 +01:00
"pages/confirm-contract.tsx",
"pages/confirm-create-reserve.tsx",
"test/tests/taler.ts"
2015-12-13 23:47:30 +01:00
]
}