summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-04-24 23:18:15 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-04-24 23:18:15 +0200
commitc26ee93d53a0b5fe6f20b03c1dbcee54f217cd2b (patch)
tree55e6f640033b9c1929d0fc713fae121a91ffb775 /tsconfig.json
parentcee7786b0015d63536cec77d5ad2c9f73f3f02ec (diff)
downloadwallet-core-c26ee93d53a0b5fe6f20b03c1dbcee54f217cd2b.tar.gz
wallet-core-c26ee93d53a0b5fe6f20b03c1dbcee54f217cd2b.tar.bz2
wallet-core-c26ee93d53a0b5fe6f20b03c1dbcee54f217cd2b.zip
Optimize production builds.
Uses UglifyJS, and thus TypeScript needs to compile down to ES5, since UglifyJS does not yet fully support ES6. Once all ES6 bugs in UglifyJS, we should compile to ES6 again.
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index da19dba69..93c7fb120 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,6 +1,6 @@
{
"compilerOptions": {
- "target": "es6",
+ "target": "es5",
"jsx": "react",
"reactNamespace": "React",
"experimentalDecorators": true,