aboutsummaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-22 15:09:18 +0200
committerChristian Grothoff <christian@grothoff.org>2016-09-22 15:09:18 +0200
commit4974dd19c02778f0c58fad6cd12e839c9164e00d (patch)
tree69198fc1d53cb595ed1cb393e86ac7ef0038a309 /gulpfile.js
parent903bb780dea2a4c538d2ffde3ba5a0a7f4497050 (diff)
parentfca125a0da491e1753d2902d21a672559936922b (diff)
downloadwallet-core-4974dd19c02778f0c58fad6cd12e839c9164e00d.tar.xz
Merge branch 'master' of git+ssh://taler.net/var/git/wallet-webex
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index c2f5319d2..f8379d638 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -117,7 +117,7 @@ const paths = {
const tsBaseArgs = {
- target: "es5",
+ target: "es6",
jsx: "react",
experimentalDecorators: true,
module: "system",
@@ -125,6 +125,8 @@ const tsBaseArgs = {
noLib: true,
noImplicitReturns: true,
noFallthroughCasesInSwitch: true,
+ strictNullChecks: true,
+ noImplicitAny: true,
};