Don't use --strict to make tsconfig 2.0 compatible

This commit is contained in:
Nathan Shively-Sanders
2017-06-19 15:56:10 -07:00
parent ebeece2d8e
commit 82b6ab4b57

View File

@@ -7,7 +7,10 @@
"module": "commonjs",
"target": "es6",
"lib": ["es6"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noEmit": true
}
}