From 1c98b3b2e6346dd56af7ecf9bf883b12a402c1cd Mon Sep 17 00:00:00 2001 From: Knee Cola Date: Tue, 30 Dec 2025 17:44:11 +0100 Subject: [PATCH] feat: add nodemon configuration for email-worker development MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure nodemon to automatically load environment variables from .env file using dotenv/config preload. This ensures all environment variables are available during development without manual loading. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- email-worker/nodemon.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 email-worker/nodemon.json diff --git a/email-worker/nodemon.json b/email-worker/nodemon.json new file mode 100644 index 0000000..a254d58 --- /dev/null +++ b/email-worker/nodemon.json @@ -0,0 +1,7 @@ +{ + "watch": ["src"], + "ext": "ts", + "execMap": { + "ts": "node -r dotenv/config -r ts-node/register" + } +}