From 24341c1384946c3bb8a3b9e58962343b8c9c6060 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Tue, 6 Aug 2024 15:38:45 +0700 Subject: [PATCH] build: configure TypeScript to skip library check --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index f4971d8..17b1233 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,7 @@ "module": "node16", "moduleResolution": "node16", "esModuleInterop": true, - "target": "es2022" + "target": "es2022", + "skipLibCheck": true } }