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 fc85ad2 commit 7b7e28aCopy full SHA for 7b7e28a
packages/compiler-core/src/utils.ts
@@ -163,7 +163,7 @@ export const isMemberExpressionBrowser = (path: string): boolean => {
163
}
164
165
export const isMemberExpressionNode = __BROWSER__
166
- ? NOOP
+ ? (NOOP as any as (path: string, context: TransformContext) => boolean)
167
: (path: string, context: TransformContext): boolean => {
168
try {
169
let ret: Expression = parseExpression(path, {
0 commit comments