Update Biome check command and improve server build setup

This commit is contained in:
Aman Varshney
2025-03-23 15:11:55 +05:30
parent a2f71761ba
commit c605c7c075
3 changed files with 20 additions and 17 deletions

View File

@@ -4,7 +4,8 @@
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js",
"build": "tsc && tsc-alias",
"dev:bun": "bun run --hot src/index.ts",
"check-types": "tsc --noEmit",
"compile": "bun build --compile --minify --sourcemap --bytecode ./src/index.ts --outfile server"
@@ -18,6 +19,7 @@
"zod": "^3.24.2"
},
"devDependencies": {
"tsc-alias": "^1.8.11",
"tsx": "^4.19.2",
"@types/node": "^22.13.11",
"typescript": "^5.8.2"