From bc0bece2b0d7d1f1a7beb6ec237eef5e7fa70dbf Mon Sep 17 00:00:00 2001 From: SalHe Li Date: Mon, 5 Sep 2022 00:12:57 +0800 Subject: [PATCH] build: update tsconfig.json Add `"skipLibCheck": true` to temporarily fix a build problem, seeing: https://github.com/vuejs/core/issues/6554. When newer Vue released, drop it. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8617c8a..313cd93 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,8 @@ "sourceMap": true, "resolveJsonModule": true, "esModuleInterop": true, - "lib": ["esnext", "dom"] + "lib": ["esnext", "dom"], + "skipLibCheck": true // TODO https://github.com/vuejs/core/issues/6554 等待新版发布后更新vue版本并去除该选项 }, "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] }