Skip to content

Commit cb51050

Browse files
committed
Fix nodemon
1 parent 6780fd9 commit cb51050

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

nodemon.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
".env"
55
],
66
"ext": "ts,.env",
7-
"verbose": true,
8-
"exec": "ts-node src/index.ts"
7+
"verbose": true
98
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"node": ">= 16.5.0"
1616
},
1717
"scripts": {
18-
"start": "nodemon",
18+
"start": "concurrently 'npx tsc --watch' 'nodemon -q build/index.js'",
1919
"transpile": "tsc",
2020
"clean": "rimraf build",
2121
"sync-env": "sync-dotenv",

0 commit comments

Comments
 (0)