Skip to content

Commit

Permalink
Skip lib typings during build
Browse files Browse the repository at this point in the history
`deepmerge-ts` seems to have an
[issue](RebeccaStevens/deepmerge-ts#488) with
a type file.

Skipping lib check in `tsconfig.json`
([doc](https://www.typescriptlang.org/tsconfig/#skipLibCheck)) works
around that and will increase compile time without drawbacks.
  • Loading branch information
JbIPS committed Jul 23, 2024
1 parent 189fff6 commit d13d2e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
"outDir": "lib",
"sourceMap": true,
"declaration": true,
"stripInternal": true
"stripInternal": true,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}
}

0 comments on commit d13d2e8

Please sign in to comment.