Add nodemon for development stage

This commit is contained in:
Amir Husayn Panahifar 2025-04-08 00:53:56 +03:30
parent 08149286b7
commit 9e02c5f52e

10
nodemon.json Normal file
View file

@ -0,0 +1,10 @@
{
"watch": [
"main.js"
],
"ext": "js,json",
"ignore": [
"node_modules"
],
"exec": "node src/main.js"
}