Best practices for error handling with Include() calls in large JSL projects?
I'm working on a large JSL project that uses many Include() calls to organize the code. I've run into an issue where if one of the included scripts fails, the main script continues executing, which can lead to cascading errors or unexpected behavior.
Currently, I'm considering restructuring my includes to only contain function definitions rather than executable code. The idea is that if an include...