Webpack loader to collect .d.ts
files, the difference between this loader
and ts-loader
is dts-loader
only emits .d.ts
files and it's designed
specifically for the purpose of sharing webpack module federation exposed types
Thus, dts-loader
will not only emits .d.ts
files, but also will emit the entry
file for the exposed modules based on the configuration of webpack module federation
plugin's exposes
section.
yarn add dts-loader
{
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
{
loader: 'dts-loader',
options: {
name: 'app', // The name configured in ModuleFederationPlugin
exposes: { // The exposes configured in ModuleFederationPlugin
'./Counter': './src/modules/Counter/Counter.component.tsx',
},
typesOutputDir: '.wp_federation' // Optional, default is '.wp_federation'
},
},
],
},
],
},
}
With the above configuration, type definitions are emitted to .wp_federation/app/dts
And the entry file for ./Counter
module is emitted to .wp_federation/app/Counter.d.ts
Then you can copy the entire folder: .wp_federation/app
and drop it to, for example: node_modules/@types
or you can remap the imports so that TypeScript knows where to resolve types for the remote modules
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"*": ["*", "types/*"] // Wherever you want to put
}
},
}
Now you can drop app
folder to ./types
For better development experience, you can also create a tarball for the types where you can find in .wp_federation
, for example, give it a name: app-dts.tgz
.
tar czvf ./.wp_federation/app-dts.tgz -C ./.wp_federation/ app
You can deploy it with your application's assets, and then the host application can download from remote and unzip it to typeRoots
. This would make sure the typings are always up-to-date when working across different teams/applications.
You can use WebpackRemoteTypesPlugin to automate step #3, it will download the tarball from remote and unzip it to the specified folder.
new WebpackRemoteTypesPlugin({
remotes: {
app: 'app@http://localhost:9000/',
},
outputDir: 'types',
remoteFileName: '[name]-dts.tgz' // default filename is [name]-dts.tgz where [name] is the remote name, for example, `app` with the above setup
}),
The plugin will download tarball from http://localhost:9000/app-dts.tgz
and unzip the tarball to ./types
folder
Note: the above setup will emit type definitions for the whole application(all ts files that webpack traverse started from the entries). To avoid emit unnecessary files, it would be better to have a separate webpack config for the exposes:
{
entry: {
'./Counter': './src/modules/Counter/Counter.component.tsx',
}
}