diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-17 21:25:20 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-17 21:25:20 +0800 |
commit | c59cd36da6d16ca89d99e9d44b0577e57a928b7f (patch) | |
tree | 9e7ef36780d16b1a2c07e732840cc7afa89abfab | |
parent | 96c648c4b49c559bc5f15a0a27937266e4d43d81 (diff) | |
download | dexon-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.json | 1 | ||||
-rw-r--r-- | packages/subproviders/tsconfig.json | 3 | ||||
-rw-r--r-- | tsconfig.json | 1 |
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, |