rolldown-plugin-dts 0.13.10 → 0.13.11
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 +3 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -149,9 +149,9 @@ This is especially useful when you have a single `tsconfig.json` for multiple pr
|
|
|
149
149
|
|
|
150
150
|
**[Experimental]** Enables DTS generation using [`tsgo`](https://github.com/microsoft/typescript-go).
|
|
151
151
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
152
|
+
To use this option, ensure that `@typescript/native-preview` is installed as a dependency.
|
|
153
|
+
|
|
154
|
+
`tsconfigRaw` and `isolatedDeclarations` options will be ignored when this option is enabled.
|
|
155
155
|
|
|
156
156
|
> [!WARNING]
|
|
157
157
|
> This option is experimental and not yet recommended for production environments.
|
package/dist/index.d.ts
CHANGED
|
@@ -108,6 +108,7 @@ interface Options {
|
|
|
108
108
|
* To use this option, make sure `@typescript/native-preview` is installed as a dependency.
|
|
109
109
|
*
|
|
110
110
|
* **Note:** This option is not yet recommended for production environments.
|
|
111
|
+
* `tsconfigRaw` and `isolatedDeclarations` options will be ignored when this option is enabled.
|
|
111
112
|
*/
|
|
112
113
|
tsgo?: boolean;
|
|
113
114
|
}
|
package/dist/index.js
CHANGED