Skip to content

Commit

Permalink
test: make all typings integration tests use ts strict mode (#34798)
Browse files Browse the repository at this point in the history
previously they didn't which was a bug/oversight.

PR Close #34798
  • Loading branch information
IgorMinar authored and matsko committed Jan 16, 2020
1 parent 39ab72e commit 7dc74de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/typings_test_ts36/tsconfig.json
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
Expand All @@ -15,7 +16,6 @@
"es2015.promise"
],
"types": [],
"strictNullChecks": true
},
"files": [
"include-all.ts",
Expand Down
2 changes: 1 addition & 1 deletion integration/typings_test_ts37/tsconfig.json
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
Expand All @@ -15,7 +16,6 @@
"es2015.promise"
],
"types": [],
"strictNullChecks": true
},
"files": [
"include-all.ts",
Expand Down

0 comments on commit 7dc74de

Please sign in to comment.