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 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
- - To use this option, ensure that `@typescript/native-preview` is installed as a dependency.
153
- - Set to `true` to enable `tsgo` for the current project.
154
- - If a string is provided, it should be the root path of your source files.
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
@@ -788,7 +788,8 @@ async function runTsgo(root, tsconfig) {
788
788
  "--outDir",
789
789
  tsgoDist,
790
790
  "--rootDir",
791
- root
791
+ root,
792
+ "--noCheck"
792
793
  ], { stdio: "inherit" });
793
794
  return tsgoDist;
794
795
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rolldown-plugin-dts",
3
- "version": "0.13.10",
3
+ "version": "0.13.11",
4
4
  "description": "A Rolldown plugin to bundle dts files",
5
5
  "type": "module",
6
6
  "license": "MIT",