11 lines
292 B
Plaintext
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 |