[Develop] Remove duplicated run of tsc typecheck (#3149)

This commit is contained in:
Chenlei Hu
2025-03-19 14:26:22 -04:00
committed by GitHub
parent 5bbceea76c
commit c554138887
2 changed files with 2 additions and 3 deletions

View File

@@ -3,8 +3,7 @@ export default {
'./**/*.{ts,tsx,vue,mts}': (stagedFiles) => [
...formatAndEslint(stagedFiles),
'vue-tsc --noEmit',
'tsc --noEmit'
'vue-tsc --noEmit'
]
}

View File

@@ -13,7 +13,7 @@
"build": "npm run typecheck && vite build",
"build:types": "vite build --config vite.types.config.mts && node scripts/prepare-types.js",
"zipdist": "node scripts/zipdist.js",
"typecheck": "vue-tsc --noEmit && tsc --noEmit",
"typecheck": "vue-tsc --noEmit",
"format": "prettier --write './**/*.{js,ts,tsx,vue,mts}'",
"format:check": "prettier --check './**/*.{js,ts,tsx,vue,mts}'",
"test:browser": "npx playwright test",