Enable no implicit returns in tsconfig.json

This commit is contained in:
Matt Bierner
2017-02-01 18:38:47 -08:00
parent 2a40036dbb
commit d98ad723d4

View File

@@ -8,6 +8,7 @@
"target": "es5",
"sourceMap": false,
"experimentalDecorators": true,
"declaration": true
"declaration": true,
"noImplicitReturns": true
}
}