From 1c6254efd03dce26f1d5e81aa0163e5e6a0b02e4 Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Mon, 13 Jul 2020 10:05:19 +0300 Subject: [PATCH] chore: skipLibCheck --- tsconfig.lib.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.lib.json b/tsconfig.lib.json index eb81bb90..f67f1757 100644 --- a/tsconfig.lib.json +++ b/tsconfig.lib.json @@ -1,10 +1,11 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "declarationDir": "typings" + "declarationDir": "typings", + "skipLibCheck": true, }, "include": [ "./custom.d.ts", "src/index.ts" ] -} \ No newline at end of file +}