From 4db5bc470b0b9e7758e17741e0c7d6df1e691e5c 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 eb81bb904e..f67f175771 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 +}