Releases: timocov/dts-bundle-generator
Releases · timocov/dts-bundle-generator
6.5.0
Fixed
- Extended interfaces from inlined externals are not picked up (see #186 and 56b22bc)
6.4.0
Fixed
export ... from
does not work as expected with a default export (see #182 and #183)
Many thanks to @gamemaker1 for the work on issues in this release!
6.3.0
Fixed
- Missing export keyword on destructured records (see #181 and 49a9b07)
6.2.0
Fixed
- Lost generic type argument from import() statements (see #178 and c27c944)
6.1.0
Fixed
- Fixed path of an entry file if tsconfig is outside of cwd and path is relative (see #171 and 9505ecc). Thanks @bluelovers
6.0.0
Breaking changes
- The default order between imported and referenced as types packages has been changed. Now all libraries that has types from
@types/
by default are treated as "should be imported" unless they explicitly declared as "should be referenced as types" (see #170 and f72fde1)
yargs
package has been upgraded from v15 to v17 (see c9481ec)
5.9.0
Added
- Added cli option
--export-referenced-types
to don't export types (interfaces/types/const enums) which aren't directly exported from entry source file (see #153)
Fixed
- Wrong typings generated when import() is used for types (see #152)
5.8.0
Fixed
- Fixed issue with incorrectly handling declaration merging with
declare module
statement (see #148)
5.7.0
Fixed
declarationDir
compiler option fails generation (see #147)
Also since this release the tool will warn if you run bundling with composite TypeScript project.
5.6.0
Fixed
- Fixed handling labelled tuples added in TypeScript 4.0 (see #143)