typescript icon indicating copy to clipboard operation
typescript copied to clipboard

Typescript Types Support For Module Federation

Results 8 typescript issues
Sort by recently updated
recently updated
newest added
trafficstars

The declaration files emitted from the `ts.createProgram` doesn't include all the imported modules from the source file. For ex: ```tsx // useConfig.ts import {InitialConfig} from './initialConfig'; export const useConfig =...

This PR addresses 2 main issues: 1. TS doesn't emit declaration files. TS isn't able to resolve the Source files passed to `ts.createProgram`, from `federationOptions#exposes`. The file paths mentioned in...

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [axios](https://axios-http.com) ([source](https://togithub.com/axios/axios)) | [`^0.27.2` -> `^1.0.0`](https://renovatebot.com/diffs/npm/axios/0.27.2/1.1.0) |...

In my project, I am publishing my remoteEntry.js and types to a subfolder: e.g. https://mysite/common/remoteEntry.js and https://mysite/common/@mf-typescript/ But the code here https://github.com/module-federation/typescript/blob/main/src/index.js#L53 assumes we only want the origin of the...

bug
help wanted

the problem is that when components are not exposed from the remote anymore, and when the plugin fetches up to date types from the remote, it is not removing the...

Apologies if I'm being dumb, I'm getting an error similar to https://github.com/module-federation/typescript/issues/21 in my container app it's failing to fetch types from the remote app ```sh ERROR fetching/writing types [AxiosError:...

This repo currently lacks a test application for testing of changes. Perhaps we can use `NX` for developing this package as well as to create a test app for development.

enhancement
good first issue