TypeScript has [introduced](https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/#using-declarations-and-explicit-resource-management) a new keyword `using` in 5.2 release. Seems like ts-loader does not support it. I get the following error: ``` You may need an additional loader to handle the result of these loaders. > await using tempFile = await createTempFile(content.value); ``` Could you please add support for this new keyword?