Hi Davi,
I assume VSCode complains about those options because I am using DefinitelyTyped @types/parse the file shows
Type definitions for parse 2.18
so I assume that are not up to date.
I am not sure if I can understand the code in the link, I tried to @ts-ignore/disable the eslint/ts but I am not sure how to do it (or the error keeps showing up), also in the code (line 694) says if (options.json) {... how this option will be passed?
query.find( json )
query.find( ‘json’ )
query.find( {json: true} )
Error example:
Argument of type '{ context: { notifyTeam: boolean; }; }' is not assignable to parameter of type 'FindOptions'.
Object literal may only specify known properties, and 'context' does not exist in type 'FindOptions'.ts(2345)