aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-07-17 21:25:20 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-07-17 21:25:20 +0800
commitc59cd36da6d16ca89d99e9d44b0577e57a928b7f (patch)
tree9e7ef36780d16b1a2c07e732840cc7afa89abfab
parent96c648c4b49c559bc5f15a0a27937266e4d43d81 (diff)
downloaddexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar.gz
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar.bz2
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar.lz
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar.xz
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.tar.zst
dexon-sol-tools-c59cd36da6d16ca89d99e9d44b0577e57a928b7f.zip
Make downlevelIteration a global config
-rw-r--r--packages/order-watcher/tsconfig.json1
-rw-r--r--packages/subproviders/tsconfig.json3
-rw-r--r--tsconfig.json1
3 files changed, 2 insertions, 3 deletions
diff --git a/packages/order-watcher/tsconfig.json b/packages/order-watcher/tsconfig.json
index ee4363919..e35816553 100644
--- a/packages/order-watcher/tsconfig.json
+++ b/packages/order-watcher/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
- "downlevelIteration": true,
"outDir": "lib"
},
"include": ["./src/**/*", "./test/**/*"]
diff --git a/packages/subproviders/tsconfig.json b/packages/subproviders/tsconfig.json
index 72dfee80b..e35816553 100644
--- a/packages/subproviders/tsconfig.json
+++ b/packages/subproviders/tsconfig.json
@@ -1,8 +1,7 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
- "outDir": "lib",
- "downlevelIteration": true
+ "outDir": "lib"
},
"include": ["./src/**/*", "./test/**/*"]
}
diff --git a/tsconfig.json b/tsconfig.json
index 5ca0267e4..588285140 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,6 +6,7 @@
"sourceMap": true,
"declaration": true,
"experimentalDecorators": true,
+ "downlevelIteration": true,
"noImplicitReturns": true,
"pretty": true,
"skipLibCheck": true,