denoify
denoify copied to clipboard
`export type * ` causing issues
I have some places where I'm re-exporting all types like this:
export type * from 'folderName'
The transformation leaves it untouched, and Deno doesn't like it. When I manually transform it to the following it works:
export * from 'folderName/index.ts'
Now, in my case, it's not an issue to change this code to not use type, but AFAIK, TS will only export types when you do export type * from ... which can have a different result.
Thanks for reporing. I need to fix this.