Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

Commit

Permalink
build: enable skipLibCheck TS config option
Browse files Browse the repository at this point in the history
This allows ignoring the error that is thrown due to the incompatibility
of the typings in `resize-observer-polyfill` version <=1.5.1 with
TypeScript version >=4.2. See also:
- https://circleci.com/gh/angular/ngcc-validation/28399
- que-etc/resize-observer-polyfill#80

Besides that, setting `skipLibCheck` to `true` is a recommended setting
and will avoid unnecessary work.
  • Loading branch information
gkalpak committed Mar 24, 2021
1 parent 7055126 commit 78267b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
10 changes: 0 additions & 10 deletions infra/failing-projects.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
{
"es2015": [
"nativescript-angular-ngcc",
"nebularauth-ngcc",
"nebulardate-fns-ngcc",
"nebulareva-icons-ngcc",
"nebularmoment-ngcc",
"nebulartheme-ngcc",
"ng6-breadcrumbs-ngcc"
],
"es5": [
"nativescript-angular-ngcc",
"nebularauth-ngcc",
"nebulardate-fns-ngcc",
"nebulareva-icons-ngcc",
"nebularmoment-ngcc",
"nebulartheme-ngcc",
"ng6-breadcrumbs-ngcc"
]
}
1 change: 1 addition & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"skipLibCheck": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
Expand Down

0 comments on commit 78267b7

Please sign in to comment.