Skip to content

Commit 30d47ac

Browse files
committed
🏗️ ci: Add build script for backend
Adds the `tsc` command to the `scripts` in `package.json`. This enables Vercel to compile the TypeScript source code into JavaScript during the deployment process.
1 parent b622c3d commit 30d47ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"dev": "tsx watch src/index.ts"
7+
"dev": "tsx watch src/index.ts",
8+
"build": "tsc"
89
},
910
"type": "module",
1011
"keywords": [],

0 commit comments

Comments
 (0)