Enable no implicit any

Fixes #70352
This commit is contained in:
Matt Bierner
2019-03-22 10:01:13 -07:00
parent 750266fb8e
commit bb84f439b7
4 changed files with 9 additions and 7 deletions

View File

@@ -2,7 +2,8 @@
"compilerOptions": {
"module": "amd",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"experimentalDecorators": true,
"noImplicitReturns": true,