From d13d2e8841a856e722723d6429cc517c5b1f5a07 Mon Sep 17 00:00:00 2001 From: JbIPS Date: Tue, 23 Jul 2024 09:55:20 +0200 Subject: [PATCH] Skip lib typings during build `deepmerge-ts` seems to have an [issue](https://github.com/RebeccaStevens/deepmerge-ts/issues/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. --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e5d30d5d3..72e02ca2c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ "outDir": "lib", "sourceMap": true, "declaration": true, - "stripInternal": true + "stripInternal": true, + "skipLibCheck": true }, "include": [ "src/**/*" @@ -15,4 +16,4 @@ "exclude": [ "node_modules" ] -} \ No newline at end of file +}