{
  "restartable": "rs",
  "ignore": [
    ".git",
    "node_modules/**/node_modules"
  ],
  "verbose": true,
  "execMap": {
    "js": "node"
  },
  "events": {
    "restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
  },

  "env": {
    "NODE_ENV": "development",
    "HA4US_LOGLEVEL": "debug"
  },
  "watch": ["src"],
  "ext": "ts",

  "exec": "ts-node --project ./tsconfig.json src/index.ts",
  "delay": 5000
}
