From 13ca3f2c3f7f06012af52f599791ec6da58eded3 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",