Use No Implicit Any In TS Extension (#16878)

Use noImplicitAny in the TS Extension (the TS team suggests enabling this option for most code).
This commit is contained in:
Matt Bierner
2016-12-08 17:23:10 -08:00
committed by GitHub
parent 7bbfb3612b
commit 6cb45c55e3
4 changed files with 11 additions and 8 deletions

View File

@@ -7,7 +7,8 @@
"es2015.promise"
],
"outDir": "./out",
"strictNullChecks": true
"strictNullChecks": true,
"noImplicitAny": true
},
"exclude": [
"node_modules",