Validace TypeScript typů při sestavení klienta
Some checks failed
ci/woodpecker/push/workflow Pipeline failed

This commit is contained in:
Martin Berka 2025-03-05 21:05:40 +01:00
parent d69e09afee
commit 61f13d2132

View File

@ -35,7 +35,7 @@
}, },
"scripts": { "scripts": {
"start": "yarn vite", "start": "yarn vite",
"build": "yarn vite build" "build": "tsc --noEmit && yarn vite build"
}, },
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [
@ -58,4 +58,4 @@
"@babel/plugin-proposal-private-property-in-object": "^7.21.11", "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"prettier": "^3.2.5" "prettier": "^3.2.5"
} }
} }