overleaf/services/chat/nodemon.json

19 lines
219 B
JSON
Raw Normal View History

{
"ignore": [
".git",
"node_modules/"
],
"verbose": true,
2018-05-22 12:25:17 -04:00
"legacyWatch": true,
"execMap": {
"js": "npm run start"
},
2018-05-22 12:25:17 -04:00
"watch": [
2019-01-04 06:05:35 -05:00
"app/js/",
"app.js",
2018-05-22 12:25:17 -04:00
"config/"
],
2019-01-04 06:05:35 -05:00
"ext": "js"
}