test: set skipLibCheck on ngcc integration test (#45672)

The ngcc integration test is in an awkward state: it's attempting to test
that the current ngcc can process @angular/core at v12. We need to make a
forwards-incompatible change to the typings of @angular/core, which means
that the compiled typings from the current ngcc won't be compatible with
core as of v12.

To get around this and allow the integration test to have some value, we're
disabling library checking for the time being.

PR Close #45672
This commit is contained in:
Alex Rickabaugh 2022-04-19 17:00:22 -07:00
parent 99b3af4ee6
commit 80d2cdab8b

View file

@ -8,7 +8,8 @@
"emitDecoratorMetadata": true,
"outDir": "dist",
"types": ["node"],
"rootDir": "."
"rootDir": ".",
"skipLibCheck": true
},
"files": [
"src/main.ts"