The Typed CSS Modules plugin provides the ability to generate TypeScript declaration files for CSS Modules files in the project.
You can install the plugin using the following command:
You can register the plugin in the rsbuild.config.ts
file:
By adding the Typed CSS Modules plugin, Rsbuild will generate corresponding TypeScript declaration files for all CSS Modules files in the project.
For example, there are two files src/index.ts
and src/index.module.scss
under a certain folder:
After executing the build, the src/index.module.scss.d.ts
type declaration file will be automatically generated:
Then open the src/index.ts
file again, you will see that the styles
object already has a exact type.