deno checkdeno check and deno publishdeno publish. I would expect both to exhibit the same kind of type checking behaviour but it seems I've found an edge-case.deno checkdeno check reports no type errors. However, using deno publishdeno publish it reports the following error:mod.tsmod.ts have chainchain exported as a simple re-export: export { chain } from '...';export { chain } from '...';. noUnusedParametersnoUnusedParameters compiler option, disabling said option removes the type error.mod.tsmod.ts (i.e. only when it is 'exported publicly').@ts-ignore@ts-ignore rule mitigates the type error.Join the Discord to ask follow-up questions and connect with the community