123456789101112131415161718 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const node = require('@sentry/node');
- /**
- * A custom OnUncaughtException integration that does not exit by default.
- */
- class OnUncaughtException extends node.Integrations.OnUncaughtException {
- constructor(options) {
- super({
- exitEvenIfOtherHandlersAreRegistered: false,
- ...options,
- });
- }
- }
- exports.OnUncaughtException = OnUncaughtException;
- //# sourceMappingURL=onUncaughtExceptionIntegration.js.map
|