nodemon.json 220 B

12345678910111213141516
  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. ],
  15. "ext": "coffee"
  16. }