@scope/core-module (The "Core" Module): Exports composables like useCoreComposable via addImportsDir.@scope/feature-module (The "Dependent" Module): A separate module that depends on the Core module.@scope/feature-module, I define the dependency in module.ts:nuxi prepare in the feature-module package. The tsconfig.json for my admin code (where I'm trying to use the composables) extends .nuxt/tsconfig.json.@scope/feature-module , I cannot access useCoreComposable via auto-import. TypeScript throws "Cannot find name 'useCoreComposable'".nuxi prepare would generate the types including @scope/core-module's exports in .nuxt/imports.d.ts, but it seems they are missing or not being picked up by my local TS context.@scope/core-module to explicitly export its runtime composables (via a ./runtime entry point) and importing them explicitly in the feature module:import { useCoreComposable } from '@scope/core-module/runtime';moduleDependencies be sufficient to enable auto-imports (and their types) within the development environment of the dependent module itself?