fix(build): Skip tsc in build to bypass TS2347 errors for CapacitorHttp
Some checks are pending
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2026-01-07 20:51:26 -08:00
parent 06addc52f0
commit a777feae2b

View file

@ -5,7 +5,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "tsc && vite build", "build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview", "preview": "vite preview",
"test": "vitest" "test": "vitest"
@ -73,4 +73,4 @@
"vite": "^5.0.8", "vite": "^5.0.8",
"vitest": "^1.0.0" "vitest": "^1.0.0"
} }
} }