fix a handful of strict null errors; make test config also be strict

These errors only arose because I didn't run `npm build`, only `npm
test`. Then, when I tried building the null checks failed. Keeping the
two config fiels in sync will help prevent this issue in the future
This commit is contained in:
felipe
2017-03-10 17:45:16 +01:00
parent c0b0649f37
commit a45048a464
4 changed files with 10 additions and 13 deletions

View File

@ -1,7 +1,12 @@
{
"compilerOptions": {
"target": "es6",
"strictNullChecks": true,
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"outDir": "../build-tests",
"sourceRoot": "./",
"rootDir": "./",
"module": "commonjs"
}