#
Configure for build
To configure Rslib for publication, execute the following steps 👇
#
Install the packages
Open a terminal at the root of the library project and install the following packages:
pnpm add -D @workleap/rslib-configs @rslib/core @rsbuild/core
#
Configure Rslib
#
Publish source code files
First, update the project package.json file to ensure the source files are included in the published package:
{
"files": [
"src",
"dist",
"CHANGELOG.md",
"README.md"
]
}
The defineBuildConfig function generates source maps for the library code by default. To enable debugging with the original source code, the published package must include the source code files.
#
tsconfig.build.json
Then, create a tsconfig.build.json file at the root of the project:
library-project
βββ src
βββββ ...
βββ package.json
βββ tsconfig.json
βββ tsconfig.build.json
Then, open the newly created tsconfig.build.json file and copy/paste the following content:
{
"extends": "@workleap/typescript-configs/library.json",
"include": ["src"],
"exclude": ["dist", "node_modules"]
}
@workleap/rslib-config is configured by default to produce bundleless output. Rslib's bundleless mode expects the include option in the TypeScript configuration file to point to the projectβs source files folder. If the project's source files are not located in the src folder, update the provided configuration sample to target the correct source folder.
#
rslib.build.ts
Next, create a configuration file named rslib.build.ts at the root of the project:
library-project
βββ src
βββββ ...
βββ package.json
βββ tsconfig.json
βββ tsconfig.build.json
βββ rslib.build.ts
Then, open the newly created file and export the Rslib configuration by using the defineBuildConfig(options) function:
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig();
#
Use predefined options
The defineBuildConfig(options) function can be used as shown in the previous examples, however, if you wish to customize the default configuration, the function also accept a few predefined options to help with that 👇
#
entry
- Type: An object literal accepting any source.entry options.
- Default:
{ index: "./src/**" }when the bundle option isfalse, otherwise{ index: ["./src/index.ts", "./src/index.js"] }.
Set Rslib source.entry option.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
entry: {
index: "./src/another-entry.tsx"
}
});
#
syntax
- Type:
string - Default:
esnext
Set Rslib lib.syntax option.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
syntax: "es2024"
});
#
bundle
- Type:
boolean - Default:
false
Whether or not to ouput a single code bundle. To output a single code bundle, set the option to true.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
bundle: true
});
Tree-shaking is most effective when bundlers can exclude entire files from the final bundle. However, when the bundle option is set to true, bundlers must perform tree-shaking within individual files by removing unused parts. While most modern bundlers support this, it's generally better to follow the lowest common denominator approach by opting for a bundleless output, to produce the most predictable results and not bundling unnecessary code.
For more details on the differences between bundled and bundleless output, refer to the documentation.
#
tsconfigPath
- Type:
string - Default:
undefined
Set Rslib source.tsconfigPath option. When the bundle option is set to false (default value), the tsconfigPath option is required.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
tsconfigPath: path.resolve("./tsconfig.build.json")
});
#
dts
- Type: An object literal accepting any lib.dts options.
- Default:
true
Whether or not to generate TypeScript *.d.ts files. To disable the generation of *.d.ts files, set the option to false.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
dts: false
});
#
target
- Type:
string - Default:
web
Set Rslib output.target option.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
target: "node"
});
#
distPath
- Type:
string - Default:
dist
Set Rsbuild output.distPath option.
import { defineBuildConfig } from "@workleap/rslib-configs";
import path from "node:path";
export default defineBuildConfig({
distPath: path.resolve("./a-custom-folder")
});
#
plugins
- Type: An array of Rsbuild plugin instances
- Default:
[]
Append the provided Rsbuild plugins to the configuration.
import { defineBuildConfig } from "@workleap/rslib-configs";
import { pluginAssetsRetry } from "@rsbuild/plugin-assets-retry";
export default defineBuildConfig({
plugins: [pluginAssetsRetry()]
});
#
sourceMap
- Type:
falseor an object literal accepting any output.sourceMap options. - Default:
{ js: "source-map", css: true }
Whether or not to generate source maps. To disable source map, set the option to false.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
sourceMap: false
});
To customize the source map configuration, provide an object literal.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
sourceMap: {
css: false
}
});
#
react
- Type:
trueor(defaultOptions: PluginReactOptions) => PluginReactOptions - Default:
defaultOptions => defaultOptions
Whether or not to transform React code. To enable React code transformation, set the option to true.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
react: true
});
To customize plugin-react, provide a function to extend the default options.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
react: defaultOptions => {
return {
...defaultOptions,
swcReactOptions: {
...(defaultOptions.swcReactOptions ?? {}),
runtime: "classic"
}
};
}
});
#
svgr
- Type:
trueor(defaultOptions: PluginSvgrOptions) => PluginSvgrOptions - Default:
defaultOptions => defaultOptions
Whether or not to handle .svg files with plugin-svgr. To enable SVGR transformation, set the option to true. When this option is not activated, the .svg files will be handled by the asset/resource rule.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
svgr: false
});
To customize the plugin-svgr, provide a function extending the default options.
import { defineBuildConfig } from "@workleap/rslib-configs";
export default defineBuildConfig({
svgr: defaultOptions => {
return {
svgrOptions: {
...(defaultOptions.svgrOptions ?? {}),
ref: true
}
...defaultOptions,
}
}
});
#
Typings
When an SVG asset in referenced in TypeScript code, TypeScript may prompt that the module is missing a type definition:
TS2307: Cannot find module './logo.svg' or its corresponding type declarations.
To fix this, add a type declaration for the SVG assets, by creating a src/env.d.ts file, and add the type declaration.
declare module '*.svg' {
export const ReactComponent: React.FunctionComponent<
React.SVGProps<SVGSVGElement>
>;
}
declare module '*.svg?react' {
const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
export default ReactComponent;
}
For additional information, refer to the plugin documentation.
#
Import images
By default, plugin-svgr is configured to support named import for ReactComponent:
import { ReactComponent as Logo } from "./logo.svg";
export const App = () => <Logo />;
#
Configuration transformers
We do not guarantee that your configuration transformers won't break after an update. It's your responsibility to keep them up to date with new releases.
The @workleap/rslib-configs, but only covers a subset of an Rslib configuration. If you need full control over the configuration, you can provide configuration transformer functions through the transformers option of the defineBuildConfig function. Remember, no locked in ❤️✌️.
To view the default build configuration of @workleap/rslib-configs, have a look at the build.ts configuration file on GitHub.
#
transformers
- Type:
((config: RslibConfig, context: RslibConfigTransformerContext) => RslibConfig)[] - Default:
[]
transformer(config: RslibConfig, context: RslibConfigTransformerContext) => RslibConfig
import { defineBuildConfig, type RslibConfigTransformer } from "@workleap/rslib-configs";
import type { RslibConfig } from "@rslib/core";
const forceNamedChunkIdsTransformer: RslibConfigTransformer = (config: RslibConfig) => {
config.tools = config.tools ?? {};
config.tools.rspack = config.tools.rspack ?? {};
config.tools.rspack.optimization = {
...(config.tools.rspack.optimization ?? {}),
chunkIds: "named"
};
return config;
};
export default defineBuildConfig({
transformers: [forceNamedChunkIdsTransformer]
});
#
Execution context
Generic transformers can use the context parameter to gather additional information about their execution context, like the environment they are operating in.
import type { RslibConfigTransformer } from "@workleap/rslib-configs";
import type { RslibConfig } from "@rslib/core";
export const transformer: RslibConfigTransformer = (config: RslibConfig) => {
if (context.environment === "build") {
config.tools = config.tools ?? {};
config.tools.rspack = config.tools.rspack ?? {};
config.tools.rspack.optimization = {
...(config.tools.rspack.optimization ?? {}),
chunkIds: "named"
};
}
return config;
}
environment:"dev" | "build" | "storybook"
#
Add a CLI script
To create the bundle files for publication, add the following script to the project package.json file:
{
"build": "rslib build -c rslib.build.ts"
}
#
CSS modules typings
When CSS Modules are imported from TypeScript code, TypeScript may prompt that the module is missing a type definition:
TS2307: Cannot find module './index.module.css' or its corresponding type declarations.
To fix this, add a type declaration file for the CSS Modules, by creating a src/env.d.ts file, and adding the corresponding type declaration.
/// <reference types="@rsbuild/core/types" />
Yes, reference types from @rsbuild/core, it's not a typo.
#
Monorepo
If the solution is a monorepo, ensure that projects referencing the packages that include CSS Modules, also include the necessary type definitions
For example, given the following structure:
workspace
βββ app
βββββ tsconfig.ts
βββ packages
βββββ components
βββββββ src
ββββββββββ Button.tsx
ββββββββββ Button.module.css
ββββββββββ env.d.ts
ββββββββββ tsconfig.ts
βββ package.json
Copy the CSS Modules typings into the app web application own env.d.ts file, or include the components package's typings into the apps web application tsconfig.ts configuration file:
{
"extends": "@workleap/typescript-configs/web-application.json",
"include": [
".",
"../**/src/env.d.ts"
],
"exclude": ["public", "dist", "node_modules"]
}
For additional information about CSS modules type declaration, refer to the Rslib/Rsbuild documentation.
#
Try it 🚀
To test the new Rslib configuration, open a terminal at the root of the project and execute the /dist folder (or any other distPath you configured).