bpms_site/.svn/pristine/74/749976d9ce6ec218bd8925e331f3c26f46a03426.svn-base
2025-11-02 16:38:49 +03:30

10 lines
278 B
Plaintext

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