aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-27 16:31:11 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-27 16:31:11 +0200
commit01c58e812e1faae6aacfd2a44ab8de344a3b466e (patch)
tree6b0e11175577cd62edc22f356b54b13d33bdce5e /gulpfile.js
parent031ede6fb3b7443afa9feb486469fab4def2cec6 (diff)
downloadwallet-core-01c58e812e1faae6aacfd2a44ab8de344a3b466e.tar.xz
be always very strict (recently added to typescript)
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 1df9d47ff..d21af0561 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -110,9 +110,8 @@ const tsBaseArgs = {
lib: ["ES6", "DOM"],
noImplicitReturns: true,
noFallthroughCasesInSwitch: true,
- strictNullChecks: true,
+ strict: true,
noImplicitAny: true,
- alwaysStrict: true,
};