diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-02-14 18:02:19 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-02-16 23:21:53 +0100 |
commit | af6843a2aa9c0e35d5d400adc85c51af83673eeb (patch) | |
tree | fe92b5d31bc4aff054bce5f61a6e40ab76cdeda4 /gulpfile.js | |
parent | 18010a739de6eb3bc2d8f2dda8231f40072fbffc (diff) |
always compile to strict mode
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js index 62a4c0876..025a67a34 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -110,6 +110,7 @@ const tsBaseArgs = { noFallthroughCasesInSwitch: true, strictNullChecks: true, noImplicitAny: true, + alwaysStrict: true, }; |