tslint.json should be present, and tsconfig.json should have noImplicitAny, noImplicitThis, and strictNullChecks set to true.

This commit is contained in:
makoto abe
2017-07-13 19:29:28 +09:00
parent dac1bf9e06
commit 089458c64a

View File

@@ -9,9 +9,9 @@
"es6",
"dom"
],
"noImplicitAny": false,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictNullChecks": true,
"baseUrl": "../",
"jsx": "react",
"experimentalDecorators": true,