mirror of https://github.com/vuejs/core.git
fix: also export runtime error strings in all cjs builds
This commit is contained in:
parent
8e727d62ab
commit
38706e4a1e
|
@ -148,7 +148,7 @@ import { ErrorTypeStrings as _ErrorTypeStrings } from './errorHandling'
|
|||
* @internal
|
||||
*/
|
||||
export const ErrorTypeStrings = (
|
||||
__ESM_BUNDLER__ || __DEV__ ? _ErrorTypeStrings : null
|
||||
__ESM_BUNDLER__ || __NODE_JS__ || __DEV__ ? _ErrorTypeStrings : null
|
||||
) as typeof _ErrorTypeStrings
|
||||
|
||||
// For devtools
|
||||
|
|
Loading…
Reference in New Issue