/** * Copyright 2020-2025 New Relic, Inc. All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ /** * @file This file exposes NPM build environment variables. These variables will * be overridden with babel. */ /** * Exposes the version of the agent */ export const VERSION: string | undefined; /** * Exposes the build type of the agent * Valid values are LOCAL, PROD, DEV */ export const BUILD_ENV: "NPM"; /** * Exposes the distribution method of the agent * Valid values are CDN, NPM */ export const DIST_METHOD: "NPM"; export const RRWEB_PACKAGE_NAME: "@newrelic/rrweb"; export const RRWEB_VERSION: string | undefined; //# sourceMappingURL=env.npm.d.ts.map