test: make all typings integration tests use ts strict mode (#34798)

previously they didn't which was a bug/oversight.

PR Close #34798
This commit is contained in:
Igor Minar 2020-01-15 13:31:43 -08:00 committed by Matias Niemelä
parent 39ab72ebdc
commit 7dc74decb7
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
{
"compilerOptions": {
"strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
@ -15,7 +16,6 @@
"es2015.promise"
],
"types": [],
"strictNullChecks": true
},
"files": [
"include-all.ts",

View File

@ -1,5 +1,6 @@
{
"compilerOptions": {
"strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
@ -15,7 +16,6 @@
"es2015.promise"
],
"types": [],
"strictNullChecks": true
},
"files": [
"include-all.ts",