You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some places where I'm re-exporting all types like this:
exporttype*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.
The text was updated successfully, but these errors were encountered:
Swimburger
changed the title
export type * & import type * causing issuesexport type * causing issues
Oct 27, 2023
I have some places where I'm re-exporting all types like this:
The transformation leaves it untouched, and Deno doesn't like it.
When I manually transform it to the following it works:
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 doexport type * from ...
which can have a different result.The text was updated successfully, but these errors were encountered: