app: unignore paths.d.ts to allow to run app without needing the server first

This commit is contained in:
k
2024-08-08 09:48:36 +02:00
parent 1273da6e71
commit 597a750fff
21 changed files with 255 additions and 242 deletions

View File

@@ -6,8 +6,8 @@
"type": "module",
"scripts": {
"dev": "($npm_execpath outdated || read -p \"Press enter to ignore...\") && vite --host",
"build": "vite build",
"check": "tsc --noEmit --skipLibCheck --pretty",
"build": "$npm_execpath run check && vite build",
"check-watch": "$npm_execpath check --watch",
"format": "prettier --write './src'",
"prod": "$npm_execpath run build && vite preview --host",