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 Soren Martius
parent 7ddad71cbf
commit 3027f85150
No known key found for this signature in database
GPG Key ID: 1C0E28A24CCF69E8
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",