From 37fefb6835e4c605c518470f009be399b74817d7 Mon Sep 17 00:00:00 2001 From: Ayane Date: Thu, 4 Aug 2022 02:28:29 +0000 Subject: [PATCH] Ignore lib checks, only care about what we need to compile Signed-off-by: GitHub --- package.json | 4 ++-- tsconfig.json | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index fa92f606..0c996e83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "sagiri-fork", - "version": "3.2.1", + "name": "sagiri", + "version": "3.2.2", "description": "A simple, lightweight and actually good JS wrapper for the SauceNAO API. Forked by Agent_RBY_", "license": "MIT", "main": "dist/index.js", diff --git a/tsconfig.json b/tsconfig.json index 7e8aa096..75f3ff8e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,8 @@ "noUnusedParameters": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "sourceMap": true + "sourceMap": true, + "skipLibCheck": true }, "include": ["lib", "types.d.ts"] }