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
It looks like since Deno 1.5, there was a breaking change which is causing an issue. I'm running Deno 1.17.2 and seeing this error:
error: TS1205 [ERROR]: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.
export { Doc } from "./util.ts";
~~~
at https://denopkg.com/chiefbiiko/[email protected]/mod.ts:5:10
TS1205 [ERROR]: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.
export { HeadersConfig, createHeaders } from "./create_headers.ts";
~~~~~~~~~~~~~
at https://denopkg.com/chiefbiiko/[email protected]/client/mod.ts:4:10
Found 2 errors.
I found some solutions saying to create a tsconfig.json like this:
It looks like since Deno 1.5, there was a breaking change which is causing an issue. I'm running Deno 1.17.2 and seeing this error:
I found some solutions saying to create a tsconfig.json like this:
... but it did not solve the issue.
A bit more research turned up this saying that isolatedModules cannot be disabled: denoland/deno#12599
The text was updated successfully, but these errors were encountered: