We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90984fb commit 89f36cdCopy full SHA for 89f36cd
packages/core-base/src/index.ts
@@ -1,3 +1,5 @@
1
+import { getGlobalThis } from '@intlify/shared'
2
+
3
export * from '@intlify/message-resolver'
4
export * from '@intlify/runtime'
5
export {
@@ -14,3 +16,9 @@ export { getWarnMessage, CoreWarnCodes } from './warnings'
14
16
export { CoreError, CoreErrorCodes, createCoreError } from './errors'
15
17
export * from './types'
18
export * from './devtools'
19
20
+if (__ESM_BUNDLER__ && !__TEST__) {
21
+ if (typeof __FEATURE_PROD_INTLIFY_DEVTOOLS__ !== 'boolean') {
22
+ getGlobalThis().__INTLIFY_PROD_DEVTOOLS__ = false
23
+ }
24
+}
0 commit comments