wallet-core/extension/tsconfig.json

24 lines
585 B
JSON
Raw Normal View History

2015-12-13 23:47:30 +01:00
{
"compilerOptions": {
2015-12-16 08:01:43 +01:00
"target": "es6",
2016-01-05 15:42:46 +01:00
"jsx": "react",
"experimentalDecorators": true
2015-12-13 23:47:30 +01:00
},
"files": [
"background/wallet.ts",
2015-12-14 11:26:55 +01:00
"background/emscriptif.ts",
"background/db.ts",
"background/query.ts",
2016-01-05 01:13:48 +01:00
"background/http.ts",
"background/checkable.ts",
2016-01-05 14:20:13 +01:00
"background/messaging.ts",
2015-12-16 08:01:43 +01:00
"lib/util.ts",
2015-12-20 20:05:06 +01:00
"lib/polyfill-react.ts",
"content_scripts/notify.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"
2015-12-13 23:47:30 +01:00
]
}