diff --git a/CHANGELOG.md b/CHANGELOG.md index 511af60..7fcc8ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to **dot-diver** will be documented here. Inspired by [keep - Fixed wrong type transformation via vite-dts-plugin (see #15) - Fixed wrong cjs export filename - Fixed order of types export to be the first export +- Enabled rollup of Typescript declaration files ## [1.0.3](https://github.com/clickbar/dot-diver/tree/1.0.3) (2023-11-03) @@ -18,7 +19,7 @@ All notable changes to **dot-diver** will be documented here. Inspired by [keep - Formatted code with new lint rules - Fixed testcase for new TypeScript behavior - Added guards against prototype pollution, thanks to @d3ng03 () -- Added provenance for the published package (See https://docs.npmjs.com/generating-provenance-statements) +- Added provenance for the published package (See ) ## [1.0.1](https://github.com/clickbar/dot-diver/tree/1.0.1) (2023-03-26) diff --git a/vite.config.ts b/vite.config.ts index 9f499c0..dbf8835 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,6 +13,7 @@ export default defineConfig({ }, plugins: [ dts({ + rollupTypes: true, include: ['src/'], }), ],