fix: updated package.json's start command to use tsx for starting server.ts instead of server.mjs

This commit is contained in:
2025-07-13 22:51:02 +02:00
parent e100803ee9
commit 1427f05390

View File

@ -28,7 +28,7 @@
"prisma:push:force": "prisma db push --force-reset",
"prisma:studio": "prisma studio",
"db:check": "pnpm exec tsx scripts/check-database-config.ts",
"start": "node server.mjs",
"start": "tsx server.ts",
"test": "concurrently 'vitest run' 'playwright test'",
"test:coverage": "concurrently \"vitest run --coverage\" \"echo 'To add playwright coverage thingy'\"",
"test:vitest": "vitest run",