Files
DiceCloud/app/imports/server/config/throwUnresolvedPromises.test.ts
2024-02-22 09:11:00 +02:00

5 lines
162 B
TypeScript

process.on('unhandledRejection', (error, p) => {
console.dir(error.stack);
console.error('Unhandled Rejection at:', p, 'reason:', error)
process.exit(1)
});