-
Hello,
My node version is v20.18.2., typescript is 5.7.3, angular is 19.2.13. tslib is available inside node_modules: "ls node_modules/tslib/ Any suggestions will be appreciated. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, I finally solved the problem. In short, it was the OpenBSD system resource limits that caused the issue. Obviously, nvim as an IDE is very resource-hungry. So, I had to tweak the staff class /etc/login.conf: staff: and also create /etc/sysctl.conf with the following line: kern.maxfiles=65536 Now everything works like a charm with the default settings I use also on other OSs such as Linux and DragonFlyBSD. Special thanks to everybody and to Volker from the OpenBSD misc list, with whom I corresponded also in private. Special thanks also to ChatGPT and grok :) Now that this is solved, I would be happy if you can comment on my resource limits. Maybe some settings can be further improved? default: I think I tweaked some things here as well. I am looking forward to your comments. Best regards, |
Beta Was this translation helpful? Give feedback.
Hello, I finally solved the problem. In short, it was the OpenBSD system resource limits that caused the issue. Obviously, nvim as an IDE is very resource-hungry. So, I had to tweak the staff class /etc/login.conf:
staff:
:datasize-cur=2G:
:datasize-max=unlimited:
:stacksize=8M:
:openfiles=8192:
:maxproc-max=2048:
:maxproc-cur=2048:
:memorylocked=131072:
:memoryuse=unlimited:
:ignorenologin:
:requirehome@:
:tc=default:
and also create /etc/sysctl.conf with the following line:
kern.maxfiles=65536
Now everything works like a charm with the default settings I use also on other OSs such as Linux and DragonFlyBSD.
Special thanks to everybody and to Volker from the OpenBSD misc list, with whom …