From: Haoqun Jiang Date: Sat, 9 Nov 2024 07:11:42 +0000 (+0800) Subject: perf: remove `--force` from the `type-check` script X-Git-Tag: v3.12.2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a04238c670680a2d0ed5f7814ed4cc2ef49fbb5;p=thirdparty%2Fvuejs%2Fcreate-vue.git 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 --- 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",