hyperdx/packages/api/nodemon.json
Brandon Pereira 65bcc1e72e
Improve common-utils build performance and add support for .env.local (#1466)
- Improves common-utils build process so the server is ready immediately when started. Currently, when the server starts common-utils hasn't finished building, so it starts, crashes, then restarts correctly after build. Now it runs as expected the first try.
- Adds support for `.env.local` so you can easily provide secret keys without always passing it in via the CLI
- These features already exist downstream, but they seem necessary fro oss as well.
2025-12-11 23:07:16 +00:00

7 lines
138 B
JSON

{
"verbose": false,
"delay": 1000,
"signal": "SIGTERM",
"ext": "ts,json,js",
"watch": ["src", "../common-utils/dist/**/*.js"]
}