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>
8 lines
112 B
JSON
8 lines
112 B
JSON
{
|
|
"watch": ["src"],
|
|
"ext": "ts",
|
|
"execMap": {
|
|
"ts": "node -r dotenv/config -r ts-node/register"
|
|
}
|
|
}
|