I have discovered that the extension does not work with Typescript decorators. With a file of the following structure:
import { UseGuards } from '@nestjs/common';
import { Args, Mutation, Parent, Query, ResolveField, Resolver } from '@nestjs/graphql';
@Resolver('User')
export class UserResolver { ... }
the extension provides the following error:
2023-07-25T18:00:29.951Z extension measure:error [SyntaxError: This experimental syntax requires enabling one of the following parser plugin(s): 'decorators-legacy, decorators' (4:0)]
If possible, it would be nice for this extension to function properly in TypeScript files that contain decorators.
I have discovered that the extension does not work with Typescript decorators. With a file of the following structure:
the extension provides the following error:
If possible, it would be nice for this extension to function properly in TypeScript files that contain decorators.