prebundle 1.3.0-beta.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -186,6 +186,17 @@ export default {
186
186
  };
187
187
  ```
188
188
 
189
+ ### copyDts
190
+
191
+ Copy all type definitions files rather than bundle them via `rollup-plugin-dts`.
192
+
193
+ ```ts
194
+ // prebundle.config.mjs
195
+ export default {
196
+ dependencies: [{ name: 'foo', copyDts: true }],
197
+ };
198
+ ```
199
+
189
200
  ### target
190
201
 
191
202
  Target ECMAScript version, default `es2021`.