|
| 1 | += @module-federation/native-federation-typescript - v0.2.6 |
| 2 | + |
| 3 | += native-federation-typescript |
| 4 | + |
| 5 | +Bundler agnostic plugins to share federated types. |
| 6 | + |
| 7 | +== Install |
| 8 | + |
| 9 | +[source, javascript] |
| 10 | +---- |
| 11 | +npm i -D @module-federation/native-federation-typescript |
| 12 | +
|
| 13 | +---- |
| 14 | + |
| 15 | +This module provides two plugins: |
| 16 | + |
| 17 | +=== NativeFederationTypeScriptRemote |
| 18 | + |
| 19 | +This plugin is used to build the federated types. |
| 20 | + |
| 21 | +==== Configuration |
| 22 | + |
| 23 | +[source, javascript] |
| 24 | +---- |
| 25 | +{ |
| 26 | + moduleFederationConfig: any; // the configuration same configuration provided to the module federation plugin, it is MANDATORY |
| 27 | + tsConfigPath?: string; // path where the tsconfig file is located, default is ''./tsconfig.json' |
| 28 | + typesFolder?: string; // folder where all the files will be stored, default is '@mf-types', |
| 29 | + compiledTypesFolder?: string; // folder where the federated modules types will be stored, default is 'compiled-types' |
| 30 | + deleteTypesFolder?: boolean; // indicate if the types folder will be deleted when the job completes, default is 'true' |
| 31 | + additionalFilesToCompile?: string[] // The path of each additional file which should be emitted |
| 32 | + compilerInstance?: 'tsc' | 'vue-tsc' // The compiler to use to emit files, default is 'tsc' |
| 33 | +} |
| 34 | +
|
| 35 | +---- |
| 36 | + |
| 37 | +==== Additional configuration |
| 38 | + |
| 39 | +Note that, for Webpack, the plugin automatically inject the `devServer.static.directory` configuration.For the other bundlers, you should configure it by yourself. |
| 40 | + |
| 41 | +=== NativeFederationTypeScriptHost |
| 42 | + |
| 43 | +This plugin is used to download the federated types. |
| 44 | + |
| 45 | +=== Configuration |
| 46 | + |
| 47 | +[source, javascript] |
| 48 | +---- |
| 49 | +{ |
| 50 | + moduleFederationConfig: any; // the configuration same configuration provided to the module federation plugin, it is MANDATORY |
| 51 | + typesFolder?: string; // folder where all the files will be stored, default is '@mf-types', |
| 52 | + deleteTypesFolder?: boolean; // indicate if the types folder will be deleted before the job starts, default is 'true' |
| 53 | +} |
| 54 | +
|
| 55 | +---- |
| 56 | + |
| 57 | +== Bundler configuration |
| 58 | + |
| 59 | +[source, javascript] |
| 60 | +---- |
| 61 | +// vite.config.ts |
| 62 | +import {NativeFederationTypeScriptHost, NativeFederationTypeScriptRemote} from '@module-federation/native-federation-typescript/vite' |
| 63 | +export default defineConfig({ |
| 64 | + plugins: [ |
| 65 | + NativeFederationTypeScriptRemote({ /* options */ }), |
| 66 | + NativeFederationTypeScriptHost({ /* options */ }), |
| 67 | + ], |
| 68 | + /* ... */ |
| 69 | + server: { // This is needed to emulate the devServer.static.directory of WebPack and correctly serve the zip file |
| 70 | + /* ... */ |
| 71 | + proxy: { |
| 72 | + '/@mf-types.zip': { |
| 73 | + target: 'http://localhost:3000', |
| 74 | + changeOrigin: true, |
| 75 | + rewrite: () => `/@fs/${process.cwd()}/dist/@mf-types.zip` |
| 76 | + } |
| 77 | + }, |
| 78 | + fs: { |
| 79 | + /* ... */ |
| 80 | + allow: ['./dist'] |
| 81 | + /* ... */ |
| 82 | + } |
| 83 | + } |
| 84 | +}) |
| 85 | +
|
| 86 | +---- |
| 87 | + |
| 88 | +[source, javascript] |
| 89 | +---- |
| 90 | +// rollup.config.js |
| 91 | +import {NativeFederationTypeScriptHost, NativeFederationTypeScriptRemote} from '@module-federation/native-federation-typescript/rollup' |
| 92 | +export default { |
| 93 | + plugins: [ |
| 94 | + NativeFederationTypeScriptRemote({ /* options */ }), |
| 95 | + NativeFederationTypeScriptHost({ /* options */ }), |
| 96 | + ], |
| 97 | +} |
| 98 | +
|
| 99 | +---- |
| 100 | + |
| 101 | +[source, javascript] |
| 102 | +---- |
| 103 | +// webpack.config.js |
| 104 | +const {NativeFederationTypeScriptHost, NativeFederationTypeScriptRemote} = require('@module-federation/native-federation-typescript/webpack') |
| 105 | +module.exports = { |
| 106 | + /* ... */ |
| 107 | + plugins: [ |
| 108 | + NativeFederationTypeScriptRemote({ /* options */ }), |
| 109 | + NativeFederationTypeScriptHost({ /* options */ }) |
| 110 | + ] |
| 111 | +} |
| 112 | +
|
| 113 | +---- |
| 114 | + |
| 115 | +[source, javascript] |
| 116 | +---- |
| 117 | +// esbuild.config.js |
| 118 | +import { build } from 'esbuild' |
| 119 | +import {NativeFederationTypeScriptHost, NativeFederationTypeScriptRemote} from '@module-federation/native-federation-typescript/esbuild' |
| 120 | +build({ |
| 121 | + plugins: [ |
| 122 | + NativeFederationTypeScriptRemote({ /* options */ }), |
| 123 | + NativeFederationTypeScriptHost({ /* options */ }) |
| 124 | + ], |
| 125 | +}) |
| 126 | +
|
| 127 | +---- |
| 128 | + |
| 129 | +[source, javascript] |
| 130 | +---- |
| 131 | +// rspack.config.js |
| 132 | +const {NativeFederationTypeScriptHost, NativeFederationTypeScriptRemote} = require('@module-federation/native-federation-typescript/rspack') |
| 133 | +module.exports = { |
| 134 | + /* ... */ |
| 135 | + plugins: [ |
| 136 | + NativeFederationTypeScriptRemote({ /* options */ }), |
| 137 | + NativeFederationTypeScriptHost({ /* options */ }) |
| 138 | + ] |
| 139 | +} |
| 140 | +
|
| 141 | +---- |
| 142 | + |
| 143 | +== TypeScript configuration |
| 144 | + |
| 145 | +To have the type definitions automatically found for imports, add paths to the `compilerOptions` in the `tsconfig.json`: |
| 146 | + |
| 147 | +[source, javascript] |
| 148 | +---- |
| 149 | +{ |
| 150 | + "paths": { |
| 151 | + "*": ["./@mf-types/*"] |
| 152 | + } |
| 153 | +} |
| 154 | +
|
| 155 | +---- |
| 156 | + |
| 157 | +== Examples |
| 158 | + |
| 159 | +To use it in a `host` module, refer to https://github.com/module-federation/module-federation-examples/tree/master/native-federation-tests-typescript-plugins/host[this example] .To use it in a `remote` module, refer to https://github.com/module-federation/module-federation-examples/tree/master/native-federation-tests-typescript-plugins/host[this example] https://github.com/module-federation/module-federation-examples/tree/master/native-federation-tests-typescript-plugins/remote[this example] . |
| 160 | + |
0 commit comments