nodemon.json 219 B

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