feat: add nodemon configuration for email-worker development

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 <noreply@anthropic.com>
This commit is contained in:
Knee Cola
2025-12-30 17:44:11 +01:00
parent 63b575e07a
commit 1c98b3b2e6

View File

@@ -0,0 +1,7 @@
{
"watch": ["src"],
"ext": "ts",
"execMap": {
"ts": "node -r dotenv/config -r ts-node/register"
}
}