Did your ionic debugger stop reloading all of a sudden during work?
Well, as far as I know, it can be caused by two possible issues :
1) Fatal error in one of dependencies which makes nodejs stop working.
2) Lack of memory!
the first one is obvious since you will face with these errors in your terminal. But for solving the second one, open /etc/sysctl.conf in your favourite editor - mine is nano.. so :
sudo nano /etc/sysctl.conf
and then add the following code to the end of the file :
fs.inotify.max_user_watches=524288
then save the file . for nano : Cntrl + x will do that and then reboot.
this, lets fs library of node to have more access to memory which lets ionic and ng directory watchers work with no issue.
thanks for reading.
yours... @thel0ner