123456789101112131415161718 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const node = require('@sentry/node');
- /**
- * A custom HTTP integration where we always enable tracing.
- */
- class Http extends node.Integrations.Http {
- constructor(options) {
- super({
- ...options,
- tracing: true,
- });
- }
- }
- exports.Http = Http;
- //# sourceMappingURL=httpIntegration.js.map
|