diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-27 16:31:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-27 16:31:11 +0200 |
commit | 01c58e812e1faae6aacfd2a44ab8de344a3b466e (patch) | |
tree | 6b0e11175577cd62edc22f356b54b13d33bdce5e /tsconfig.json | |
parent | 031ede6fb3b7443afa9feb486469fab4def2cec6 (diff) |
be always very strict (recently added to typescript)
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tsconfig.json b/tsconfig.json index 67bb4f847..a97c8f2b6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,9 +12,8 @@ ], "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, - "strictNullChecks": true, - "noImplicitAny": true, - "alwaysStrict": true + "strict": true, + "noImplicitAny": true }, "files": [ "decl/chrome/chrome.d.ts", |