From f2a545479d5e1b6d7fa7ff1075f340ad6d3e7a64 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 15 Jan 2020 20:40:40 -0800 Subject: [PATCH] test: explicitly turn off skipLibCheck for typings tests (#34798) skipLibCheck=false is currently the default (in tsc 3.7.4) but it wouldn't be shocking if the default changed in the future because skipLibCheck=true makes more sense in almost all scenarios. So just to be defensive and explicit, I'm setting the flag to false even though it's the current default. PR Close #34798 --- integration/typings_test_ts36/tsconfig.json | 1 + integration/typings_test_ts37/tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/integration/typings_test_ts36/tsconfig.json b/integration/typings_test_ts36/tsconfig.json index fadb96a081..a7522d1cff 100644 --- a/integration/typings_test_ts36/tsconfig.json +++ b/integration/typings_test_ts36/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "strict": true, + "skipLibCheck": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, "module": "commonjs", diff --git a/integration/typings_test_ts37/tsconfig.json b/integration/typings_test_ts37/tsconfig.json index 3edf41c42f..b220b236d5 100644 --- a/integration/typings_test_ts37/tsconfig.json +++ b/integration/typings_test_ts37/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "strict": true, + "skipLibCheck": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, "module": "commonjs",