nodemon.json 235 B

1234567891011121314151617
  1. {
  2. "ignore": [
  3. ".git",
  4. "node_modules/"
  5. ],
  6. "verbose": true,
  7. "execMap": {
  8. "js": "npm run start"
  9. },
  10. "watch": [
  11. "app/coffee/",
  12. "app.coffee",
  13. "modules/*/app/coffee/",
  14. "config/"
  15. ],
  16. "ext": "coffee"
  17. }