This commit is contained in:
MarSeventh
2024-07-19 23:26:06 +08:00
commit 4e0c55d1f9
1401 changed files with 69819 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
import { dynamicRequire } from '@sentry/utils';
const lazyLoadedNodePerformanceMonitoringIntegrations = [
() => {
const integration = dynamicRequire(module, './apollo')
;
return new integration.Apollo();
},
() => {
const integration = dynamicRequire(module, './apollo')
;
return new integration.Apollo({ useNestjs: true });
},
() => {
const integration = dynamicRequire(module, './graphql')
;
return new integration.GraphQL();
},
() => {
const integration = dynamicRequire(module, './mongo')
;
return new integration.Mongo();
},
() => {
const integration = dynamicRequire(module, './mongo')
;
return new integration.Mongo({ mongoose: true });
},
() => {
const integration = dynamicRequire(module, './mysql')
;
return new integration.Mysql();
},
() => {
const integration = dynamicRequire(module, './postgres')
;
return new integration.Postgres();
},
];
export { lazyLoadedNodePerformanceMonitoringIntegrations };
//# sourceMappingURL=lazy.js.map