bpms_site/.svn/pristine/37/375906ac7f2052d66312e4f619e3b3e83fc64bdc.svn-base
2025-11-02 16:38:49 +03:30

11 lines
292 B
Plaintext

"use strict";
process.on("uncaughtException", (err)=>{
console.error("uncaughtException", err);
process.exit(1);
});
process.on("unhandledRejection", (err)=>{
console.error("unhandledRejection", err);
process.exit(1);
});
//# sourceMappingURL=setup-exception-listeners.js.map