Peter Budai
Peter Budai
I think it is related to the fact that there is no `target` specified int the `tsconfig.json` in the superjson library. The default is `ES3` and it means the emitted...
Hi @Skn0tt , thanks for looking into this. There is no syntactical problem with the code which `tsc` outputs with the current settings (aka without `target`)/ The problem is that...
One more thing: You have mentioned that you have followed Axel Rauschmayer guide: https://2ality.com/2021/06/typescript-esm-nodejs.html That also specifies `target` es2020 in `tsconfig.json`: https://2ality.com/2021/06/typescript-esm-nodejs.html#tsconfig.json
Thanks @Skn0tt - this has fixed the situation: warnings are gone! Thanks!
Hello team, is there any plans to complete this PR, or should I open a new one if I'd like to have this functionality?
Is there anything I can do to move this PR forward? Please let me know.
This seems to be working with the latest `sqlfluff`. I think #7134 has fixed it. Pls close the issue.
Hi @drjwelch , I think the root cause has been fixed. Maybe not just with #7134 but also with #7222. Fact is, if you use the above mentioned example, it...
Thanks @dr-1 for submitting the issue - it's a really interesting one. There are two issues mentioned here: 1. With the default settings, how the `City AS "City"` should be...
Two observation: You have an _unclosed_ string in your example, which is resulting the unparsable error: ```sql exec ('drop user [myuser]) ``` Once you close the string the example can...