nodemon.json 450 B

1234567891011121314151617181920212223242526
  1. {
  2. "restartable": "rs",
  3. "ignore": [
  4. ".git",
  5. "node_modules",
  6. "dist",
  7. "src",
  8. "logs",
  9. "pids",
  10. "log"
  11. ],
  12. "verbose": true,
  13. "execMap": {
  14. "js": "node --harmony"
  15. },
  16. "events": {
  17. "restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
  18. },
  19. "watch": [
  20. ],
  21. "env": {
  22. "NODE_ENV": "development"
  23. },
  24. "ext": "js json jsx"
  25. }