SEMS-on-device-server/nodemon.json

17 lines
294 B
JSON
Raw Normal View History

2024-09-11 19:06:44 +08:00
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"exec": "node server.js",
"watch": [
"./"
],
"env": {
"NODE_ENV": "development",
"RAW_DATA_DIR": "C:/tmp/"
},
"ext": "js,json"
}