eo-services/nodemon.json
2023-06-30 16:28:52 -05:00

17 lines
377 B
JSON

{
"restartable": "rs",
"watch": ["src", ".env"],
"ext": "js,ts,json",
"execMap": {
"js": "node --harmony"
},
"ignore": [".git", "node_modules/**/node_modules"],
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
"verbose": true,
"env": {
"NODE_ENV": "development"
}
}