Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8396353
flags.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
873 B
Subscribers
None
flags.js
View Options
/*
* This file defines flags and constants that can be modified during compile time in order to facilitate tree shaking
* for users.
*
* Debug flags need to be declared in each package individually and must not be imported across package boundaries,
* because some build tools have trouble tree-shaking imported guards.
*
* As a convention, we define debug flags in a `flags.ts` file in the root of a package's `src` folder.
*
* Debug flag files will contain "magic strings" like `__SENTRY_DEBUG__` that may get replaced with actual values during
* our, or the user's build process. Take care when introducing new flags - they must not throw if they are not
* replaced.
*/
/** Flag that is true for debug builds, false otherwise. */
export
var
IS_DEBUG_BUILD
=
typeof
__SENTRY_DEBUG__
===
'undefined'
?
true
:
__SENTRY_DEBUG__
;
//# sourceMappingURL=flags.js.map
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jun 4 2025, 7:52 PM (13 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3399406
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment