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
This commit is contained in:
Igor Minar 2020-01-15 20:40:40 -08:00 committed by Matias Niemelä
parent 7dc74decb7
commit f2a545479d
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"strict": true, "strict": true,
"skipLibCheck": false,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"module": "commonjs", "module": "commonjs",

View File

@ -1,6 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"strict": true, "strict": true,
"skipLibCheck": false,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"module": "commonjs", "module": "commonjs",