From 7dc74decb7a5e2611640cb4a9c78078e2e293fe9 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 15 Jan 2020 13:31:43 -0800 Subject: [PATCH] test: make all typings integration tests use ts strict mode (#34798) previously they didn't which was a bug/oversight. PR Close #34798 --- integration/typings_test_ts36/tsconfig.json | 2 +- integration/typings_test_ts37/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/typings_test_ts36/tsconfig.json b/integration/typings_test_ts36/tsconfig.json index c815868e51184..fadb96a081fad 100644 --- a/integration/typings_test_ts36/tsconfig.json +++ b/integration/typings_test_ts36/tsconfig.json @@ -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", diff --git a/integration/typings_test_ts37/tsconfig.json b/integration/typings_test_ts37/tsconfig.json index 70c8db79e198a..3edf41c42f83e 100644 --- a/integration/typings_test_ts37/tsconfig.json +++ b/integration/typings_test_ts37/tsconfig.json @@ -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",