There are three files as following: ```ts // module/feature.tsx or module/feature.jsx export function func() { console.log('Hello world'); } ``` ```ts // module/index.ts export * from './feature'; ``` ```ts // index.ts export * from './module'; ``` Then an error `No named exports found in module './module'. eslint(import/export)` will be raised in the outer `index.ts`.