From d630c8189edd97131b5f367cc1a9cbe1d656830b Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Fri, 12 May 2023 22:48:40 +0800 Subject: [PATCH] fix: specify the sub-project to type-check (#275) --- 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 69a087b3..32f5df0e 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 --noEmit" + "type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false" }, "devDependencies": { "@types/node": "^18.16.3", -- 2.39.5