always compile to strict mode

This commit is contained in:
Florian Dold 2017-02-14 18:02:19 +01:00
parent 18010a739d
commit af6843a2aa
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -110,6 +110,7 @@ const tsBaseArgs = {
noFallthroughCasesInSwitch: true,
strictNullChecks: true,
noImplicitAny: true,
alwaysStrict: true,
};