typescript: use build mode rather than project mode

This commit is contained in:
Rory& 2025-10-07 14:45:23 +02:00
parent f4d6384a59
commit d0a83d65e1

View File

@ -9,8 +9,8 @@
"start:api": "node dist/api/start.js",
"start:cdn": "node dist/cdn/start.js",
"start:gateway": "node dist/gateway/start.js",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"build": "tsc -b .",
"watch": "tsc -w -b .",
"test": "node scripts/test.js",
"lint": "eslint .",
"setup": "npm run build && npm run generate:schema",