diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-09-12 17:41:12 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-09-12 17:41:12 +0200 |
commit | e3cc9c59bcc36eee8c3234574cfdfda3f5eea658 (patch) | |
tree | 0ed42f9ba86b9e5da350d243e1afdb61ab6ab78b /tsconfig.json | |
parent | 17581b946d97e88a168bbf9f388e83300d593c1d (diff) |
stricter type checking
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 44814dec5..2df3b2ce8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,9 @@ "sourceMap": true, "noLib": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "strictNullChecks": true, + "noImplicitAny": true }, "files": [ "lib/i18n.ts", |