Skip to content

Commit

Permalink
build(openid): set skipLibCheck to true
Browse files Browse the repository at this point in the history
The pipeline was failing because of external dependencies. I'm not sure
if this is the right way to fix it, but it's a start.

Signed-off-by: Karim Stekelenburg <karim@animo.id>
  • Loading branch information
karimStekelenburg committed Feb 6, 2023
1 parent 6baf565 commit 02757e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/openid4vc-client/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./build"
"outDir": "./build",
"skipLibCheck": true
},
"include": ["src/**/*"]
}
3 changes: 2 additions & 1 deletion packages/openid4vc-client/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["jest"]
"types": ["jest"],
"skipLibCheck": true
}
}

0 comments on commit 02757e9

Please sign in to comment.