diff --git a/lint-staged.config.js b/lint-staged.config.js index e7b9264cd..2d1a6f051 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -3,8 +3,7 @@ export default { './**/*.{ts,tsx,vue,mts}': (stagedFiles) => [ ...formatAndEslint(stagedFiles), - 'vue-tsc --noEmit', - 'tsc --noEmit' + 'vue-tsc --noEmit' ] } diff --git a/package.json b/package.json index 11c86056b..b680f071e 100644 --- a/package.json +++ b/package.json @@ -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",