Releases: wessberg/rollup-plugin-ts
Releases · wessberg/rollup-plugin-ts
v1.1.22
v1.1.21
v1.1.19
v1.0.12
Features
improved declaration (.d.ts
) generation by a huge margin
Previously, declarations was based on a singular "outFile" generated by Typescript. However, this had several drawbacks.
First, library consumers wouldn't be able to properly use it. Second, everything would be bundled along, rather than only
the specific parts that are exported by any given library. The new approach bundles all declarations into a single file per-chunk
and only includes the things that are exported or that are depended upon by exported identifiers within a module.
Stable release
Features
BREAKING CHANGES
- release: The 'babel' config option has been removed in favor of 'babelConfig' which may point to a file on disk (such as a '.babelrc' or a 'babel.config.js') or be a dictionary of Babel options.
- release: The 'parseExternalModules' config option has been removed.