overleaf/services/document-updater/nodemon.json

20 lines
232 B
JSON
Raw Normal View History

2018-02-15 11:28:40 -05:00
{
"ignore": [
".git",
"node_modules/"
],
"verbose": true,
2018-02-15 11:54:21 -05:00
"legacyWatch": true,
2018-02-15 11:28:40 -05:00
"execMap": {
"js": "npm run start"
},
2018-05-23 08:52:20 -04:00
2018-02-15 11:28:40 -05:00
"watch": [
"app/coffee/",
2018-05-23 08:52:20 -04:00
"app.coffee",
"config/"
2018-02-15 11:28:40 -05:00
],
"ext": "coffee"
2018-05-23 08:52:20 -04:00
2018-02-15 11:28:40 -05:00
}