I am getting this error while doing my Angular 10 project.
Error from chokidar (/myProject): Error: ENOSPC: System limit for number of file watchers reached, watch '/myProject/tsconfig.spec.json'
Is there a method to resolve this error?
Increase the limit The limit can be increased to its maximum (524288) by editing /etc/sysctl. conf and appending this line to the file. The value appended will be printed to the console if the append worked. This should be the only time you have to do this until you have to set up a new system again.
You're running into a kernel limit with your inotify watchers. You can run this to fix it for the current boot,
sudo sysctl -w fs.inotify.max_user_watches=524288
You can run this to fix it for future boots,
echo "fs.inotify.max_user_watches=524288" \
| sudo tee -a /etc/sysctl.conf
I found this post and helped me to solve that problem. All you have to do is change the max_user_watches
Error ENOSPC System limit for number of file watchers reached
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With