 There are other files that use wildcard exports, like `comp/index.ts`: ```ts export { comp } from './comp' export { assign, render } from './render' export * from './types' ``` The dependency between `comp/index.ts` and `comp/types.ts` is rendered correctly. So why it does not happen for the root `index.ts`? 🤔