From 0885ed84136630d478a55e7b4ca518ca1e9a299e Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 26 Jul 2021 17:00:11 +0800 Subject: [PATCH] fix: enable `skipLibCheck` option --- template/config/base/jsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/template/config/base/jsconfig.json b/template/config/base/jsconfig.json index d63ac93b..7fa21452 100644 --- a/template/config/base/jsconfig.json +++ b/template/config/base/jsconfig.json @@ -15,7 +15,8 @@ "src/*" ] }, - "lib": ["esnext", "dom", "dom.iterable", "scripthost"] + "lib": ["esnext", "dom", "dom.iterable", "scripthost"], + "skipLibCheck": true }, "include": [ "vite.config.*", -- 2.39.5