From 8a04238c670680a2d0ed5f7814ed4cc2ef49fbb5 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Sat, 9 Nov 2024 15:11:42 +0800 Subject: [PATCH] perf: remove `--force` from the `type-check` script It was introduced to work around a bug in `vue-tsc` that has been fixed in https://github.com/vuejs/language-tools/pull/3218 --- template/config/typescript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/config/typescript/package.json b/template/config/typescript/package.json index e1df4e56..a063c232 100644 --- a/template/config/typescript/package.json +++ b/template/config/typescript/package.json @@ -2,7 +2,7 @@ "scripts": { "build": "run-p type-check \"build-only {@}\" --", "build-only": "vite build", - "type-check": "vue-tsc --build --force" + "type-check": "vue-tsc --build" }, "devDependencies": { "@types/node": "^22.9.0", -- 2.39.5