refactor(sdk-node): fix eslint warning (#5400)
Co-authored-by: Marc Pichler <marc.pichler@dynatrace.com>
This commit is contained in:
parent
74d434eecd
commit
553db87117
|
|
@ -14,9 +14,12 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
|
||||
* TODO: Replace wildcard export with named exports before next major version
|
||||
*/
|
||||
// This is a meta-package, and these exist in to re-export *all* items from
|
||||
// the individual packages as individual _namespaces_, so wildcard exports are
|
||||
// appropriate here. Otherwise, it'd be a pain to enumerate and keep things
|
||||
// in-sync with all the upstream packages.
|
||||
|
||||
/* eslint-disable no-restricted-syntax */
|
||||
export * as api from '@opentelemetry/api';
|
||||
export * as contextBase from '@opentelemetry/api';
|
||||
export * as core from '@opentelemetry/core';
|
||||
|
|
@ -25,6 +28,8 @@ export * as metrics from '@opentelemetry/sdk-metrics';
|
|||
export * as node from '@opentelemetry/sdk-trace-node';
|
||||
export * as resources from '@opentelemetry/resources';
|
||||
export * as tracing from '@opentelemetry/sdk-trace-base';
|
||||
/* eslint-enable no-restricted-syntax */
|
||||
|
||||
export { NodeSDK } from './sdk';
|
||||
export type { LoggerProviderConfig, MeterProviderConfig } from './sdk';
|
||||
export type { NodeSDKConfiguration } from './types';
|
||||
|
|
|
|||
Loading…
Reference in New Issue