Fix: When checking for TS errors we should really just check the types instead of building all targets

This commit is contained in:
Sören Martius 2020-11-11 09:17:41 +01:00 committed by mutoe
parent 7ddad71cbf
commit 638b35143d
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"check-ts-errors": "yarn tsc && yarn vti diagnostics",
"check-ts-errors": "yarn tsc --noEmit && yarn vti diagnostics",
"lint": "eslint \"{src,cypress}/**/*.{js,ts,vue}\"",
"test:unit": "jest --coverage",
"test:e2e": "cypress run",