We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current Behavior:
.env
src
Expected Behavior:
Proposed Solutions:
Option A: Use Nodemon
npm install nodemon --save-dev
Update dev script:
dev
"dev": "nodemon --watch src --watch .env src/index.ts -x 'tsx'"
Pros: Industry standard, reliable watching Cons: Adds dependency
Option B: Enhance TSX Watch
"dev": "tsx watch --watch-path src --watch-path .env src/index.ts"
Pros: No new dependencies Cons: Less mature watching implementation
Technical Notes:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behavior:
.env
file changessrc
directory don't trigger reloadExpected Behavior:
.env
file modificationssrc
Proposed Solutions:
Option A: Use Nodemon
Update
dev
script:Pros: Industry standard, reliable watching
Cons: Adds dependency
Option B: Enhance TSX Watch
Pros: No new dependencies
Cons: Less mature watching implementation
Technical Notes:
The text was updated successfully, but these errors were encountered: