Remove TypeScript compilation from build command

This commit is contained in:
Adw8 2025-01-31 14:38:40 +05:30
parent c927ae0d6f
commit a19293dae6

View File

@ -4,7 +4,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "ts-node --project tsconfig.server.json server.ts", "dev": "ts-node --project tsconfig.server.json server.ts",
"build": "next build && tsc --project tsconfig.server.json", "build": "next build",
"start": "tsc --project tsconfig.server.json && NODE_ENV=production PORT=80 node dist/server.js", "start": "tsc --project tsconfig.server.json && NODE_ENV=production PORT=80 node dist/server.js",
"lint": "next lint" "lint": "next lint"
}, },