Skip to content

Commit

Permalink
more adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
valon-loshaj committed Nov 11, 2024
1 parent 9a46d14 commit 2fe5dda
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
7 changes: 5 additions & 2 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand All @@ -25,5 +25,8 @@
"prisma": "^5.22.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5"
},
"engines": {
"node": ">=14.16"
}
}
3 changes: 2 additions & 1 deletion apps/backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"paths": {
"@/*": ["src/*"]
},
"target": "es2020",
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down
16 changes: 0 additions & 16 deletions apps/frontend/tsconfig copy.json

This file was deleted.

0 comments on commit 2fe5dda

Please sign in to comment.