(_options: Options)
| 50 | // NOTE: in awslambda-auto.ts, we also call the original `getDefaultIntegrations` from `@sentry/node` to load performance integrations. |
| 51 | // If at some point we need to filter a node integration out for good, we need to make sure to also filter it out there. |
| 52 | export function getDefaultIntegrations(_options: Options): Integration[] { |
| 53 | return [...getDefaultIntegrationsWithoutPerformance(), awsIntegration(), awsLambdaIntegration()]; |
| 54 | } |
| 55 | |
| 56 | export interface AwsServerlessOptions extends NodeOptions { |
| 57 | /** |
no test coverage detected