From 1b10a91d961c727ad6493874ccd36902d0493a8b Mon Sep 17 00:00:00 2001 From: Luis Riegger Date: Sat, 8 May 2021 18:30:20 +0200 Subject: [PATCH] add nodemon script --- nodemon.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nodemon.json diff --git a/nodemon.json b/nodemon.json new file mode 100644 index 0000000..6dd7df6 --- /dev/null +++ b/nodemon.json @@ -0,0 +1,12 @@ +{ + "watch": [ + "src" + ], + "ext": "ts", + "ignore": [], + "exec": "tsc && homebridge -I -D", + "signal": "SIGTERM", + "env": { + "NODE_OPTIONS": "--trace-warnings" + } +} \ No newline at end of file