friday-ai / friday

Friday is your open-source home automation assistant.
MIT License
1 stars 1 forks source link

Add nodemon config to package.json #66

Closed MathieuAndrade closed 2 years ago

MathieuAndrade commented 2 years ago

Add nodemon config to package.json to watch only server and test folder and avoid useless restarts

Config =>

  "nodemonConfig": {
    "watch": ["./src", "./test"],
    "ext": ".js, .ts"
  },