@visulima/rollup-plugin-dts 1.0.0-alpha.4 → 1.0.0-alpha.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## @visulima/rollup-plugin-dts [1.0.0-alpha.5](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-dts@1.0.0-alpha.4...@visulima/rollup-plugin-dts@1.0.0-alpha.5) (2026-03-24)
2
+
3
+ ### Features
4
+
5
+ * **rollup-plugin-dts:** add include/exclude filter support ([5d76867](https://github.com/visulima/packem/commit/5d76867939d95c1d75469f85a59b9504f3c3f1e4))
6
+
7
+ ### Bug Fixes
8
+
9
+ * **rollup-plugin-dts:** externalize scss/sass/less/styl/stylus imports ([183ff0b](https://github.com/visulima/packem/commit/183ff0b0e58c11d7ee0d11b6ab69b493f01f3b75))
10
+ * **rollup-plugin-dts:** handle function overloads in .d.ts bundling ([afe77ab](https://github.com/visulima/packem/commit/afe77ab941fc51d024c49fea58086d7a6b81073f))
11
+ * **rollup-plugin-dts:** support decorator auto-accessors in .d.ts parsing ([154795a](https://github.com/visulima/packem/commit/154795aa6f5d0f9b39c8ea39c18356bf285c15d4))
12
+ * updated deps ([a50675d](https://github.com/visulima/packem/commit/a50675d7f9a98236edd89bc39bc35b8cb4db1565))
13
+
14
+ ### Miscellaneous Chores
15
+
16
+ * **rollup-plugin-dts:** add explicit return type to loadVueLanguageTools ([cf47a3c](https://github.com/visulima/packem/commit/cf47a3c60fe2c7931d23dedc4162789ce3a8b5c0))
17
+
18
+ ### Tests
19
+
20
+ * **rollup-plugin-dts:** add regression tests for type modifier preservation through export * ([ca9fe87](https://github.com/visulima/packem/commit/ca9fe87b05f37afe6b80263d94b855ef69143ee3)), closes [#225](https://github.com/visulima/packem/issues/225)
21
+ * **rollup-plugin-dts:** add tests for overloads, scss, decorators, infer renaming ([36e0987](https://github.com/visulima/packem/commit/36e09874d3aba9b8f5361dd8899d56865d00bf0b))
22
+
1
23
  ## @visulima/rollup-plugin-dts [1.0.0-alpha.4](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-dts@1.0.0-alpha.3...@visulima/rollup-plugin-dts@1.0.0-alpha.4) (2026-03-16)
2
24
 
3
25
  ## @visulima/rollup-plugin-dts [1.0.0-alpha.3](https://github.com/visulima/packem/compare/@visulima/rollup-plugin-dts@1.0.0-alpha.2...@visulima/rollup-plugin-dts@1.0.0-alpha.3) (2026-03-14)
package/dist/filename.js CHANGED
@@ -1 +1 @@
1
- var _=Object.defineProperty;var l=(e,t)=>_(e,"name",{value:t,configurable:!0});var m=Object.defineProperty,a=l((e,t)=>m(e,"name",{value:t,configurable:!0}),"s");const s=/\.([cm]?)jsx?$/,r=/\.([cm]?)tsx?$/,c=/\.d\.([cm]?)ts$/,d=/\.d\.([cm]?)ts\.map$/,$=/[\\/]node_modules[\\/]/,E=/\.css$/,n=/\.vue$/,o=/\.json$/,f=a(e=>e.replace(s,".d.$1ts"),"filename_js_to_dts"),i=a(e=>e.replace(n,".vue.ts").replace(r,".d.$1ts").replace(s,".d.$1ts").replace(o,".json.d.ts"),"filename_to_dts"),R=a((e,t)=>e.replace(c,`.$1${t}`),"filename_dts_to"),S=a((e,t)=>typeof e=="function"?e(t):e,"resolveTemplateFn"),u=a((e,t)=>e.replaceAll("[name]",t),"replaceTemplateName");export{E as RE_CSS,c as RE_DTS,d as RE_DTS_MAP,s as RE_JS,o as RE_JSON,$ as RE_NODE_MODULES,r as RE_TS,n as RE_VUE,R as filename_dts_to,f as filename_js_to_dts,i as filename_to_dts,u as replaceTemplateName,S as resolveTemplateFn};
1
+ var _=Object.defineProperty;var a=(e,s)=>_(e,"name",{value:s,configurable:!0});var m=Object.defineProperty,t=a((e,s)=>m(e,"name",{value:s,configurable:!0}),"s");const l=/\.([cm]?)jsx?$/,c=/\.([cm]?)tsx?$/,r=/\.d\.([cm]?)ts$/,d=/\.d\.([cm]?)ts\.map$/,$=/[\\/]node_modules[\\/]/,E=/\.(?:css|scss|sass|less|styl|stylus)$/,n=/\.vue$/,o=/\.json$/,f=t(e=>e.replace(l,".d.$1ts"),"filename_js_to_dts"),i=t(e=>e.replace(n,".vue.ts").replace(c,".d.$1ts").replace(l,".d.$1ts").replace(o,".json.d.ts"),"filename_to_dts"),u=t((e,s)=>e.replace(r,`.$1${s}`),"filename_dts_to"),R=t((e,s)=>typeof e=="function"?e(s):e,"resolveTemplateFn"),S=t((e,s)=>e.replaceAll("[name]",s),"replaceTemplateName");export{E as RE_CSS,r as RE_DTS,d as RE_DTS_MAP,l as RE_JS,o as RE_JSON,$ as RE_NODE_MODULES,c as RE_TS,n as RE_VUE,u as filename_dts_to,f as filename_js_to_dts,i as filename_to_dts,S as replaceTemplateName,R as resolveTemplateFn};
package/dist/index.d.ts CHANGED
@@ -3,12 +3,15 @@ import { TsConfigJson } from '@visulima/tsconfig';
3
3
  import { IsolatedDeclarationsOptions } from 'oxc-transform';
4
4
  export { RE_CSS, RE_DTS, RE_DTS_MAP, RE_JS, RE_JSON, RE_NODE_MODULES, RE_TS, RE_VUE } from './filename.js';
5
5
 
6
+ type FilterPattern = ReadonlyArray<string | RegExp> | string | RegExp | null;
6
7
  interface GeneralOptions {
7
8
  cjsDefault?: boolean;
9
+ exclude?: FilterPattern;
8
10
  compilerOptions?: TsConfigJson.CompilerOptions;
9
11
  cwd?: string;
10
12
  dtsInput?: boolean;
11
13
  emitDtsOnly?: boolean;
14
+ include?: FilterPattern;
12
15
  resolve?: boolean | (string | RegExp)[];
13
16
  resolver?: "oxc" | "tsc";
14
17
  sideEffects?: boolean;
@@ -37,6 +40,8 @@ interface Options extends GeneralOptions, TscOptions {
37
40
  type Overwrite<T, U> = Pick<T, Exclude<keyof T, keyof U>> & U;
38
41
  type MarkPartial<T, K extends keyof T> = Omit<Required<T>, K> & Partial<Pick<T, K>>;
39
42
  type OptionsResolved = Overwrite<MarkPartial<Omit<Options, "compilerOptions">, "banner" | "footer">, {
43
+ exclude: FilterPattern;
44
+ include: FilterPattern;
40
45
  oxc: IsolatedDeclarationsOptions | false;
41
46
  tsconfig?: string;
42
47
  tsconfigRaw: TsConfigJson;
@@ -44,13 +49,13 @@ type OptionsResolved = Overwrite<MarkPartial<Omit<Options, "compilerOptions">, "
44
49
  path?: string;
45
50
  } | false;
46
51
  }>;
47
- declare const resolveOptions: ({ banner, build, cjsDefault, compilerOptions, cwd, dtsInput, eager, emitDtsOnly, emitJs, footer, incremental, newContext, oxc, parallel, resolve, resolver, sideEffects, sourcemap, tsconfig, tsconfigRaw: overriddenTsconfigRaw, tsgo: tsgoOption, tsMacro, vue, }: Options) => OptionsResolved;
52
+ declare const resolveOptions: ({ banner, build, cjsDefault, compilerOptions, cwd, dtsInput, eager, emitDtsOnly, emitJs, exclude, footer, include, incremental, newContext, oxc, parallel, resolve, resolver, sideEffects, sourcemap, tsconfig, tsconfigRaw: overriddenTsconfigRaw, tsgo: tsgoOption, tsMacro, vue, }: Options) => OptionsResolved;
48
53
 
49
54
  declare const createFakeJsPlugin: ({ cjsDefault, sideEffects, sourcemap }: Pick<OptionsResolved, "sourcemap" | "cjsDefault" | "sideEffects">) => Plugin;
50
55
 
51
- declare const createGeneratePlugin: ({ build, cwd, eager, emitDtsOnly, emitJs, incremental, newContext, oxc, parallel, sourcemap, tsconfig, tsconfigRaw, tsgo, tsMacro, vue, }: Pick<OptionsResolved, "cwd" | "tsconfig" | "tsconfigRaw" | "build" | "incremental" | "oxc" | "emitDtsOnly" | "vue" | "tsMacro" | "parallel" | "eager" | "tsgo" | "newContext" | "emitJs" | "sourcemap">) => Plugin;
56
+ declare const createGeneratePlugin: ({ build, cwd, eager, emitDtsOnly, emitJs, exclude, include, incremental, newContext, oxc, parallel, sourcemap, tsconfig, tsconfigRaw, tsgo, tsMacro, vue, }: Pick<OptionsResolved, "cwd" | "tsconfig" | "tsconfigRaw" | "build" | "incremental" | "oxc" | "emitDtsOnly" | "vue" | "tsMacro" | "parallel" | "eager" | "tsgo" | "newContext" | "emitJs" | "sourcemap" | "include" | "exclude">) => Plugin;
52
57
 
53
58
  declare const dts: (options?: Options) => Plugin[];
54
59
 
55
60
  export { createFakeJsPlugin, createGeneratePlugin, dts, resolveOptions };
56
- export type { Options };
61
+ export type { FilterPattern, Options };
package/dist/index.js CHANGED
@@ -1,3 +1,3 @@
1
- var R=Object.defineProperty;var c=(t,e)=>R(t,"name",{value:e,configurable:!0});import{createDebug as w}from"obug";import O from"magic-string";import{RE_DTS as p,resolveTemplateFn as F,replaceTemplateName as h,RE_TS as N,RE_VUE as D,RE_JSON as $,RE_CSS as k,RE_NODE_MODULES as j,filename_to_dts as x}from"./filename.js";import{RE_DTS_MAP as ie,RE_JS as ae}from"./filename.js";import T from"./packem_shared/createFakeJsPlugin-C_PkEz9j.js";import{c as C}from"./packem_shared/generate-CxhgFvNH.js";import{resolveOptions as I}from"./packem_shared/resolveOptions-CpYBT-5y.js";import S from"node:path";import{ResolverFactory as J}from"oxc-resolver";var M=Object.defineProperty,A=c((t,e)=>M(t,"name",{value:e,configurable:!0}),"o$1");const U=A(({banner:t,footer:e})=>({name:"rollup-plugin-dts:banner",async renderChunk(r,a){if(!p.test(a.fileName))return;const o=new O(r);if(t){const l=await(typeof t=="function"?t(a):t);l&&o.prepend(`${l}
1
+ var R=Object.defineProperty;var c=(t,e)=>R(t,"name",{value:e,configurable:!0});import{createDebug as w}from"obug";import O from"magic-string";import{RE_DTS as p,resolveTemplateFn as F,replaceTemplateName as h,RE_TS as $,RE_VUE as D,RE_JSON as N,RE_CSS as k,RE_NODE_MODULES as j,filename_to_dts as x}from"./filename.js";import{RE_DTS_MAP as ie,RE_JS as ae}from"./filename.js";import T from"./packem_shared/createFakeJsPlugin-B0TpG64d.js";import{c as I}from"./packem_shared/generate-BnWcSpbk.js";import{resolveOptions as C}from"./packem_shared/resolveOptions-MWViYRPS.js";import S from"node:path";import{ResolverFactory as J}from"oxc-resolver";var M=Object.defineProperty,A=c((t,e)=>M(t,"name",{value:e,configurable:!0}),"o$2");const U=A(({banner:t,footer:e})=>({name:"rollup-plugin-dts:banner",async renderChunk(r,a){if(!p.test(a.fileName))return;const o=new O(r);if(t){const l=await(typeof t=="function"?t(a):t);l&&o.prepend(`${l}
2
2
  `)}if(e){const l=await(typeof e=="function"?e(a):e);l&&o.append(`
3
- ${l}`)}return{code:o.toString(),get map(){return o.generateMap({hires:"boundary",includeContent:!0,source:a.fileName})}}}}),"createBannerPlugin");var W=Object.defineProperty,q=c((t,e)=>W(t,"name",{value:e,configurable:!0}),"m");const z=q(({sideEffects:t})=>({name:"rollup-plugin-dts:dts-input",options:t===!1?e=>({treeshake:e.treeshake===!1?!1:{...typeof e.treeshake=="object"&&e.treeshake!==null?e.treeshake:{},moduleSideEffects:!1},...e}):void 0,outputOptions(e){return{...e,entryFileNames(r){const{entryFileNames:a}=e;if(a){const o=F(a,r),l=h(o,r.name);if(p.test(l))return o;const d=h(o,`${r.name}.d`);if(p.test(d))return d}return p.test(r.name)?r.name:r.name.endsWith(".d")?"[name].ts":"[name].d.ts"}}}}),"createDtsInputPlugin");var B=Object.defineProperty,v=c((t,e)=>B(t,"name",{value:e,configurable:!0}),"o");const g=v(t=>N.test(t)||D.test(t)||$.test(t),"isSourceFile"),G=v(({cwd:t,resolve:e,resolver:r,sideEffects:a,tsconfig:o,tsconfigRaw:l})=>{const d=new J({conditionNames:["types","typings","import","require"],mainFields:["types","typings","module","main"],tsconfig:o?{configFile:o,references:"auto"}:void 0}),y=a?!0:null;return{name:"rollup-plugin-dts:resolver",resolveId:{async handler(s,i,u){if(!i||!p.test(i))return;const n={external:!0,id:s,moduleSideEffects:a};if(k.test(s))return n;const m=await this.resolve(s,i,u);if(m?.external)return n;const f=await P(s,i,m);return f?j.test(f)&&!_(s)?n:p.test(f)?{id:f,moduleSideEffects:y}:g(f)?(await this.load({id:f}),{id:x(f),moduleSideEffects:y}):null:E(s)?null:n},order:"pre"}};function _(s){return typeof e=="boolean"?e:e.some(i=>typeof i=="string"?s===i:i.test(s))}async function P(s,i,u){let n;if(r==="tsc"){const{default:m}=await import("./packem_chunks/resolver.js");n=m(s,i,t,o,l)}else n=d.resolveDtsSync(i,s).path;return n&&(n=S.normalize(n)),!n||!g(n)?u&&E(u.id)&&g(u.id)&&!u.external?u.id:null:n}},"createDtsResolvePlugin"),E=v(t=>t.startsWith(".")||S.isAbsolute(t),"isFilePath");var L=Object.defineProperty,V=c((t,e)=>L(t,"name",{value:e,configurable:!0}),"t");const b=w("rollup-plugin-dts:options"),ne=V((t={})=>{b("resolving dts options");const e=I(t);b("resolved dts options %o",e);const r=[];return t.dtsInput?r.push(z(e)):r.push(C(e)),r.push(G(e),T(e)),(t.banner||t.footer)&&r.push(U(e)),r},"dts");export{k as RE_CSS,p as RE_DTS,ie as RE_DTS_MAP,ae as RE_JS,$ as RE_JSON,j as RE_NODE_MODULES,N as RE_TS,D as RE_VUE,T as createFakeJsPlugin,C as createGeneratePlugin,ne as dts,I as resolveOptions};
3
+ ${l}`)}return{code:o.toString(),get map(){return o.generateMap({hires:"boundary",includeContent:!0,source:a.fileName})}}}}),"createBannerPlugin");var W=Object.defineProperty,q=c((t,e)=>W(t,"name",{value:e,configurable:!0}),"m");const z=q(({sideEffects:t})=>({name:"rollup-plugin-dts:dts-input",options:t===!1?e=>({treeshake:e.treeshake===!1?!1:{...typeof e.treeshake=="object"&&e.treeshake!==null?e.treeshake:{},moduleSideEffects:!1},...e}):void 0,outputOptions(e){return{...e,entryFileNames(r){const{entryFileNames:a}=e;if(a){const o=F(a,r),l=h(o,r.name);if(p.test(l))return o;const d=h(o,`${r.name}.d`);if(p.test(d))return d}return p.test(r.name)?r.name:r.name.endsWith(".d")?"[name].ts":"[name].d.ts"}}}}),"createDtsInputPlugin");var B=Object.defineProperty,v=c((t,e)=>B(t,"name",{value:e,configurable:!0}),"o$1");const g=v(t=>$.test(t)||D.test(t)||N.test(t),"isSourceFile"),G=v(({cwd:t,resolve:e,resolver:r,sideEffects:a,tsconfig:o,tsconfigRaw:l})=>{const d=new J({conditionNames:["types","typings","import","require"],mainFields:["types","typings","module","main"],tsconfig:o?{configFile:o,references:"auto"}:void 0}),y=a?!0:null;return{name:"rollup-plugin-dts:resolver",resolveId:{async handler(s,i,u){if(!i||!p.test(i))return;const n={external:!0,id:s,moduleSideEffects:a};if(k.test(s))return n;const m=await this.resolve(s,i,u);if(m?.external)return n;const f=await P(s,i,m);return f?j.test(f)&&!_(s)?n:p.test(f)?{id:f,moduleSideEffects:y}:g(f)?(await this.load({id:f}),{id:x(f),moduleSideEffects:y}):null:E(s)?null:n},order:"pre"}};function _(s){return typeof e=="boolean"?e:e.some(i=>typeof i=="string"?s===i:i.test(s))}async function P(s,i,u){let n;if(r==="tsc"){const{default:m}=await import("./packem_chunks/resolver.js");n=m(s,i,t,o,l)}else n=d.resolveDtsSync(i,s).path;return n&&(n=S.normalize(n)),!n||!g(n)?u&&E(u.id)&&g(u.id)&&!u.external?u.id:null:n}},"createDtsResolvePlugin"),E=v(t=>t.startsWith(".")||S.isAbsolute(t),"isFilePath");var L=Object.defineProperty,V=c((t,e)=>L(t,"name",{value:e,configurable:!0}),"o");const b=w("rollup-plugin-dts:options"),ne=V((t={})=>{b("resolving dts options");const e=C(t);b("resolved dts options %o",e);const r=[];return t.dtsInput?r.push(z(e)):r.push(I(e)),r.push(G(e),T(e)),(t.banner||t.footer)&&r.push(U(e)),r},"dts");export{k as RE_CSS,p as RE_DTS,ie as RE_DTS_MAP,ae as RE_JS,N as RE_JSON,j as RE_NODE_MODULES,$ as RE_TS,D as RE_VUE,T as createFakeJsPlugin,I as createGeneratePlugin,ne as dts,C as resolveOptions};
@@ -1 +1 @@
1
- var q=Object.defineProperty;var h=(e,t)=>q(e,"name",{value:t,configurable:!0});import{createDebug as P}from"obug";import u from"typescript";import{g as F,X as N}from"../packem_shared/generate-CxhgFvNH.js";import{posix as w}from"node:path";import{pathToFileURL as j}from"node:url";var T=Object.defineProperty,S=h((e,t)=>T(e,"name",{value:t,configurable:!0}),"i");const U=P("rollup-plugin-dts:tsc-system"),x=S(e=>({...u.sys,deleteFile(t,...r){e.delete(t),u.sys.deleteFile?.(t,...r)},directoryExists(t){return[...e.keys()].some(r=>r.startsWith(t))?!0:u.sys.directoryExists(t)},fileExists(t){return e.has(t)?!0:u.sys.fileExists(t)},readFile(t,...r){return e.has(t)?e.get(t):u.sys.readFile(t,...r)},resolvePath(t){return e.has(t)?t:u.sys.resolvePath(t)},write(t){U(t)},writeFile(t,r,...o){e.set(t,r),u.sys.writeFile(t,r,...o)}}),"createFsSystem"),B=S(e=>({...x(e),deleteFile(t){e.delete(t)},writeFile(t,r){e.set(t,r)}}),"createMemorySystem");var J=Object.defineProperty,$=h((e,t)=>J(e,"name",{value:t,configurable:!0}),"s$1");const W=$(e=>{const t=$(r=>u.isPropertySignature(r)&&u.isPrivateIdentifier(r.name)?e.factory.updatePropertySignature(r,r.modifiers,e.factory.createStringLiteral(r.name.text),r.questionToken,r.type):u.visitEachChild(r,t,e),"visitor");return r=>u.visitNode(r,t,u.isSourceFile)??r},"stripPrivateFields"),M={getCanonicalFileName:u.sys.useCaseSensitiveFileNames?e=>e:e=>e.toLowerCase(),getCurrentDirectory:$(()=>u.sys.getCurrentDirectory(),"getCurrentDirectory"),getNewLine:$(()=>u.sys.newLine,"getNewLine")},O={afterDeclarations:[W]},R=$((e,t,r)=>{if(!e||e.sourceRoot)return;const o=w.dirname(j(t).pathname),s=w.dirname(j(r).pathname);o!==s&&(e.sourceRoot=w.relative(s,o))},"setSourceMapRoot");var z=Object.defineProperty,m=h((e,t)=>z(e,"name",{value:t,configurable:!0}),"f");const g=P("rollup-plugin-dts:tsc-build"),H=m((e,t,r,o,s)=>{let i=e.projects.get(r);return i?(g(`skip building projects for ${r}`),i):(i=G(t,r,o,s),e.projects.set(r,i),i)},"getOrBuildProjects"),G=m((e,t,r,o)=>{g(`start building projects for ${t}`);const s=V(t,e,r,o);g("collected %d projects: %j",s.length,s.map(n=>n.tsconfigPath));const i=u.createSolutionBuilderHost(e,I),l=u.createSolutionBuilder(i,[t],{force:r,verbose:!0}).build(void 0,void 0,void 0,n=>(g(`transforming project ${n}`),O));g(`built solution for ${t} with exit status ${l}`);const a=new Map;for(const n of s)for(const c of n.parsedConfig.fileNames)a.set(e.resolvePath(c),n);return a},"buildProjects"),V=m((e,t,r,o)=>{const s=new Set,i=[],l=[t.resolvePath(e)];for(;;){const a=l.pop();if(!a)break;if(s.has(a))continue;s.add(a);const n=A(a,t);if(n){n.options=D(n.options,{force:r,sourcemap:o,tsconfigPath:a}),i.push({parsedConfig:n,tsconfigPath:a});for(const c of n.projectReferences??[])l.push(u.resolveProjectReferencePath(c))}}return i},"collectProjectGraph"),A=m((e,t)=>{const r=[],o=u.getParsedCommandLineOfConfigFile(e,void 0,{...t,onUnRecoverableConfigFileDiagnostic:m(s=>{r.push(s)},"onUnRecoverableConfigFileDiagnostic")});if(r.length>0)throw new Error(`[rollup-plugin-dts] Unable to read ${e}: ${u.formatDiagnostics(r,M)}`);return o},"parseTsconfig"),D=m((e,t)=>{const r=e.noEmit??!1,o=e.declaration??!!e.composite,s=e.declarationMap??!1,i=t?.tsconfigPath&&!t.force;return r===!0&&(e={...e,noEmit:!1},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "noEmit" set to true. Please set it to false to generate declaration files.`)),o===!1&&(e={...e,declaration:!0},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "declaration" set to false. Please set it to true to generate declaration files.`)),s===!1&&t?.sourcemap&&(e={...e,declarationMap:!0},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "declarationMap" set to false. Please set it to true if you want to generate source maps for declaration files.`)),e},"patchCompilerOptions"),I=m((e,t,...r)=>u.createEmitAndSemanticDiagnosticsBuilderProgram(e,D(t??{},null),...r),"createProgramWithPatchedCompilerOptions"),L=m(e=>{const{context:t=F,id:r,incremental:o,sourcemap:s,tsconfig:i}=e;if(g(`running tscEmitBuild id: ${r}, tsconfig: ${i}, incremental: ${o}`),!i)return{error:"[rollup-plugin-dts] build mode requires a tsconfig path"};const l=(o?x:B)(t.files),a=l.resolvePath(r);a!==r&&g(`resolved id from ${r} to ${a}`);const n=H(t,l,i,!o,s).get(a);if(!n)return g(`unable to locate a project containing ${a}`),{error:`Unable to locate ${r} from the given tsconfig file ${i}`};g(`loaded project ${n.tsconfigPath} for ${r}`);const c=!l.useCaseSensitiveFileNames,f=u.getOutputFileNames(n.parsedConfig,a,c);let v,y;for(const d of f){if(d.endsWith(".d.ts")){if(!l.fileExists(d)){console.warn(`[rollup-plugin-dts] Unable to read file ${d}`);continue}v=l.readFile(d);continue}if(d.endsWith(".d.ts.map")){if(!l.fileExists(d))continue;const E=l.readFile(d);if(!E){console.warn(`[rollup-plugin-dts] Unexpected sourcemap ${d}`);continue}y=JSON.parse(E),R(y,d,a)}}return v?{code:v,map:y}:o?(g("incremental build failed"),L({...e,incremental:!1})):(g(`unable to build .d.ts file for ${r}`),n.parsedConfig.options.declaration!==!0?{error:`Unable to build .d.ts file for ${r}; Make sure the "declaration" option is set to true in ${n.tsconfigPath}`}:{error:`Unable to build .d.ts file for ${r}; This seems like a bug of rollup-plugin-dts. Please report this issue to https://github.com/sxzz/rollup-plugin-dts/issues`})},"tscEmitBuild");var K=Object.defineProperty,b=h((e,t)=>K(e,"name",{value:t,configurable:!0}),"g");const X=b(()=>{const e=P("rollup-plugin-dts:vue");e("loading vue language tools");try{const t=require.resolve("vue-tsc"),{proxyCreateProgram:r}=require(require.resolve("@volar/typescript",{paths:[t]})),o=require(require.resolve("@vue/language-core",{paths:[t]}));return{getLanguagePlugin:b((s,i)=>{const l=i.options.$rootDir,a=i.options.$configRaw,n=new o.CompilerOptionsResolver(s,s.sys.readFile);n.addConfig(a?.vueCompilerOptions??{},l);const c=n.build();return o.createVueLanguagePlugin(s,i.options,c,f=>f)},"getLanguagePlugin"),proxyCreateProgram:r}}catch(t){throw e("vue language tools not found",t),new Error("Failed to load vue language tools. Please manually install vue-tsc.")}},"loadVueLanguageTools"),Y=b(()=>{const e=P("rollup-plugin-dts:ts-macro");e("loading ts-macro language tools");try{const t=require.resolve("@ts-macro/tsc"),{proxyCreateProgram:r}=require(require.resolve("@volar/typescript",{paths:[t]})),o=require(require.resolve("@ts-macro/language-plugin",{paths:[t]})),{getOptions:s}=require(require.resolve("@ts-macro/language-plugin/options",{paths:[t]}));return{getLanguagePlugin:b((i,l)=>{const a=l.options.$rootDir;return o.getLanguagePlugins(i,l.options,s(i,a))[0]},"getLanguagePlugin"),proxyCreateProgram:r}}catch(t){throw e("ts-macro language tools not found",t),new Error("Failed to load ts-macro language tools. Please manually install @ts-macro/tsc.")}},"loadTsMacro"),Q=b((e,t)=>{const r=t.vue?X():void 0,o=t.tsMacro?Y():void 0,s=r?.proxyCreateProgram||o?.proxyCreateProgram;return s?s(e,e.createProgram,(i,l)=>{const a=[];return r&&a.push(r.getLanguagePlugin(i,l)),o&&a.push(o.getLanguagePlugin(i,l)),{languagePlugins:a}}):e.createProgram},"createProgramFactory");var Z=Object.defineProperty,C=h((e,t)=>Z(e,"name",{value:t,configurable:!0}),"m");const p=P("rollup-plugin-dts:tsc-compiler"),_={checkJs:!1,declaration:!0,declarationMap:!1,emitDeclarationOnly:!0,moduleResolution:u.ModuleResolutionKind.Bundler,noEmit:!1,noEmitOnError:!0,resolveJsonModule:!0,skipLibCheck:!0,target:99},ee=C(e=>{const{context:t=F,entries:r,id:o}=e,s=t.programs.find(l=>{const a=l.getRootFileNames();return r?r.every(n=>a.includes(n)):a.includes(o)});if(s){const l=s.getSourceFile(o);if(l)return{file:l,program:s}}p(`create program for module: ${o}`);const i=te(e);return p(`created program for module: ${o}`),t.programs.push(i.program),i},"createOrGetTsModule"),te=C(({context:e=F,cwd:t,entries:r,id:o,tsconfig:s,tsconfigRaw:i,tsMacro:l,vue:a})=>{const n=x(e.files),c=s?N(s):t,f=u.parseJsonConfigFileContent(i,n,c);return p(`Creating program for root project: ${c}`),re({baseDir:c,entries:r,fsSystem:n,id:o,parsedConfig:f,tsMacro:l,vue:a})},"createTsProgram"),re=C(({baseDir:e,entries:t,fsSystem:r,id:o,parsedConfig:s,tsMacro:i,vue:l})=>{const a={..._,...s.options,$configRaw:s.raw,$rootDir:e},n=[...new Set([o,...t||s.fileNames].map(y=>r.resolvePath(y)))],c=u.createCompilerHost(a,!0),f=Q(u,{tsMacro:i,vue:l})({host:c,options:a,projectReferences:s.projectReferences,rootNames:n}),v=f.getSourceFile(o);if(!v)throw p(`source file not found in program: ${o}`),s.projectReferences?.length?new Error(`[rollup-plugin-dts] Unable to load ${o}; You have "references" in your tsconfig file. Perhaps you want to add \`dts: { build: true }\` in your config?`):r.fileExists(o)?(p(`File ${o} exists on disk.`),new Error(`Unable to load file ${o} from the program. This seems like a bug of rollup-plugin-dts. Please report this issue to https://github.com/sxzz/rollup-plugin-dts/issues`)):(p(`File ${o} does not exist on disk.`),new Error(`Source file not found: ${o}`));return{file:v,program:f}},"createTsProgramFromParsedConfig"),oe=C(e=>{p(`running tscEmitCompiler ${e.id}`);const t=ee(e),{file:r,program:o}=t;p(`got source file: ${r.fileName}`);let s,i;const{diagnostics:l,emitSkipped:a}=o.emit(r,(n,c)=>{n.endsWith(".map")?(p(`emit dts sourcemap: ${n}`),i=JSON.parse(c),R(i,n,e.id)):(p(`emit dts: ${n}`),s=c)},void 0,!0,O,!0);return a&&l.length>0?{error:u.formatDiagnostics(l,M)}:(!s&&r.isDeclarationFile&&(p("nothing was emitted. fallback to sourceFile text."),s=r.getFullText()),{code:s,map:i})},"tscEmitCompiler");var se=Object.defineProperty,ie=h((e,t)=>se(e,"name",{value:t,configurable:!0}),"r");const k=P("rollup-plugin-dts:tsc");k(`loaded typescript: ${u.version}`);const pe=ie(e=>(k(`running tscEmit ${e.id}`),e.build?L(e):oe(e)),"tscEmit");export{pe as tscEmit};
1
+ var q=Object.defineProperty;var h=(e,t)=>q(e,"name",{value:t,configurable:!0});import{createDebug as P}from"obug";import u from"typescript";import{g as F,X as N}from"../packem_shared/generate-BnWcSpbk.js";import{posix as w}from"node:path";import{pathToFileURL as j}from"node:url";var T=Object.defineProperty,S=h((e,t)=>T(e,"name",{value:t,configurable:!0}),"i");const U=P("rollup-plugin-dts:tsc-system"),x=S(e=>({...u.sys,deleteFile(t,...r){e.delete(t),u.sys.deleteFile?.(t,...r)},directoryExists(t){return[...e.keys()].some(r=>r.startsWith(t))?!0:u.sys.directoryExists(t)},fileExists(t){return e.has(t)?!0:u.sys.fileExists(t)},readFile(t,...r){return e.has(t)?e.get(t):u.sys.readFile(t,...r)},resolvePath(t){return e.has(t)?t:u.sys.resolvePath(t)},write(t){U(t)},writeFile(t,r,...o){e.set(t,r),u.sys.writeFile(t,r,...o)}}),"createFsSystem"),B=S(e=>({...x(e),deleteFile(t){e.delete(t)},writeFile(t,r){e.set(t,r)}}),"createMemorySystem");var J=Object.defineProperty,$=h((e,t)=>J(e,"name",{value:t,configurable:!0}),"s$1");const W=$(e=>{const t=$(r=>u.isPropertySignature(r)&&u.isPrivateIdentifier(r.name)?e.factory.updatePropertySignature(r,r.modifiers,e.factory.createStringLiteral(r.name.text),r.questionToken,r.type):u.visitEachChild(r,t,e),"visitor");return r=>u.visitNode(r,t,u.isSourceFile)??r},"stripPrivateFields"),M={getCanonicalFileName:u.sys.useCaseSensitiveFileNames?e=>e:e=>e.toLowerCase(),getCurrentDirectory:$(()=>u.sys.getCurrentDirectory(),"getCurrentDirectory"),getNewLine:$(()=>u.sys.newLine,"getNewLine")},O={afterDeclarations:[W]},R=$((e,t,r)=>{if(!e||e.sourceRoot)return;const o=w.dirname(j(t).pathname),s=w.dirname(j(r).pathname);o!==s&&(e.sourceRoot=w.relative(s,o))},"setSourceMapRoot");var z=Object.defineProperty,m=h((e,t)=>z(e,"name",{value:t,configurable:!0}),"f$1");const g=P("rollup-plugin-dts:tsc-build"),H=m((e,t,r,o,s)=>{let i=e.projects.get(r);return i?(g(`skip building projects for ${r}`),i):(i=G(t,r,o,s),e.projects.set(r,i),i)},"getOrBuildProjects"),G=m((e,t,r,o)=>{g(`start building projects for ${t}`);const s=V(t,e,r,o);g("collected %d projects: %j",s.length,s.map(n=>n.tsconfigPath));const i=u.createSolutionBuilderHost(e,I),l=u.createSolutionBuilder(i,[t],{force:r,verbose:!0}).build(void 0,void 0,void 0,n=>(g(`transforming project ${n}`),O));g(`built solution for ${t} with exit status ${l}`);const a=new Map;for(const n of s)for(const c of n.parsedConfig.fileNames)a.set(e.resolvePath(c),n);return a},"buildProjects"),V=m((e,t,r,o)=>{const s=new Set,i=[],l=[t.resolvePath(e)];for(;;){const a=l.pop();if(!a)break;if(s.has(a))continue;s.add(a);const n=A(a,t);if(n){n.options=D(n.options,{force:r,sourcemap:o,tsconfigPath:a}),i.push({parsedConfig:n,tsconfigPath:a});for(const c of n.projectReferences??[])l.push(u.resolveProjectReferencePath(c))}}return i},"collectProjectGraph"),A=m((e,t)=>{const r=[],o=u.getParsedCommandLineOfConfigFile(e,void 0,{...t,onUnRecoverableConfigFileDiagnostic:m(s=>{r.push(s)},"onUnRecoverableConfigFileDiagnostic")});if(r.length>0)throw new Error(`[rollup-plugin-dts] Unable to read ${e}: ${u.formatDiagnostics(r,M)}`);return o},"parseTsconfig"),D=m((e,t)=>{const r=e.noEmit??!1,o=e.declaration??!!e.composite,s=e.declarationMap??!1,i=t?.tsconfigPath&&!t.force;return r===!0&&(e={...e,noEmit:!1},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "noEmit" set to true. Please set it to false to generate declaration files.`)),o===!1&&(e={...e,declaration:!0},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "declaration" set to false. Please set it to true to generate declaration files.`)),s===!1&&t?.sourcemap&&(e={...e,declarationMap:!0},i&&console.warn(`[rollup-plugin-dts] ${t.tsconfigPath} has "declarationMap" set to false. Please set it to true if you want to generate source maps for declaration files.`)),e},"patchCompilerOptions"),I=m((e,t,...r)=>u.createEmitAndSemanticDiagnosticsBuilderProgram(e,D(t??{},null),...r),"createProgramWithPatchedCompilerOptions"),L=m(e=>{const{context:t=F,id:r,incremental:o,sourcemap:s,tsconfig:i}=e;if(g(`running tscEmitBuild id: ${r}, tsconfig: ${i}, incremental: ${o}`),!i)return{error:"[rollup-plugin-dts] build mode requires a tsconfig path"};const l=(o?x:B)(t.files),a=l.resolvePath(r);a!==r&&g(`resolved id from ${r} to ${a}`);const n=H(t,l,i,!o,s).get(a);if(!n)return g(`unable to locate a project containing ${a}`),{error:`Unable to locate ${r} from the given tsconfig file ${i}`};g(`loaded project ${n.tsconfigPath} for ${r}`);const c=!l.useCaseSensitiveFileNames,f=u.getOutputFileNames(n.parsedConfig,a,c);let v,y;for(const d of f){if(d.endsWith(".d.ts")){if(!l.fileExists(d)){console.warn(`[rollup-plugin-dts] Unable to read file ${d}`);continue}v=l.readFile(d);continue}if(d.endsWith(".d.ts.map")){if(!l.fileExists(d))continue;const E=l.readFile(d);if(!E){console.warn(`[rollup-plugin-dts] Unexpected sourcemap ${d}`);continue}y=JSON.parse(E),R(y,d,a)}}return v?{code:v,map:y}:o?(g("incremental build failed"),L({...e,incremental:!1})):(g(`unable to build .d.ts file for ${r}`),n.parsedConfig.options.declaration!==!0?{error:`Unable to build .d.ts file for ${r}; Make sure the "declaration" option is set to true in ${n.tsconfigPath}`}:{error:`Unable to build .d.ts file for ${r}; This seems like a bug of rollup-plugin-dts. Please report this issue to https://github.com/sxzz/rollup-plugin-dts/issues`})},"tscEmitBuild");var K=Object.defineProperty,b=h((e,t)=>K(e,"name",{value:t,configurable:!0}),"g");const X=b(()=>{const e=P("rollup-plugin-dts:vue");e("loading vue language tools");try{const t=require.resolve("vue-tsc"),{proxyCreateProgram:r}=require(require.resolve("@volar/typescript",{paths:[t]})),o=require(require.resolve("@vue/language-core",{paths:[t]}));return{getLanguagePlugin:b((s,i)=>{const l=i.options.$rootDir,a=i.options.$configRaw,n=new o.CompilerOptionsResolver(s,s.sys.readFile);n.addConfig(a?.vueCompilerOptions??{},l);const c=n.build();return o.createVueLanguagePlugin(s,i.options,c,f=>f)},"getLanguagePlugin"),proxyCreateProgram:r}}catch(t){throw e("vue language tools not found",t),new Error("Failed to load vue language tools. Please manually install vue-tsc.")}},"loadVueLanguageTools"),Y=b(()=>{const e=P("rollup-plugin-dts:ts-macro");e("loading ts-macro language tools");try{const t=require.resolve("@ts-macro/tsc"),{proxyCreateProgram:r}=require(require.resolve("@volar/typescript",{paths:[t]})),o=require(require.resolve("@ts-macro/language-plugin",{paths:[t]})),{getOptions:s}=require(require.resolve("@ts-macro/language-plugin/options",{paths:[t]}));return{getLanguagePlugin:b((i,l)=>{const a=l.options.$rootDir;return o.getLanguagePlugins(i,l.options,s(i,a))[0]},"getLanguagePlugin"),proxyCreateProgram:r}}catch(t){throw e("ts-macro language tools not found",t),new Error("Failed to load ts-macro language tools. Please manually install @ts-macro/tsc.")}},"loadTsMacro"),Q=b((e,t)=>{const r=t.vue?X():void 0,o=t.tsMacro?Y():void 0,s=r?.proxyCreateProgram||o?.proxyCreateProgram;return s?s(e,e.createProgram,(i,l)=>{const a=[];return r&&a.push(r.getLanguagePlugin(i,l)),o&&a.push(o.getLanguagePlugin(i,l)),{languagePlugins:a}}):e.createProgram},"createProgramFactory");var Z=Object.defineProperty,C=h((e,t)=>Z(e,"name",{value:t,configurable:!0}),"m");const p=P("rollup-plugin-dts:tsc-compiler"),_={checkJs:!1,declaration:!0,declarationMap:!1,emitDeclarationOnly:!0,moduleResolution:u.ModuleResolutionKind.Bundler,noEmit:!1,noEmitOnError:!0,resolveJsonModule:!0,skipLibCheck:!0,target:99},ee=C(e=>{const{context:t=F,entries:r,id:o}=e,s=t.programs.find(l=>{const a=l.getRootFileNames();return r?r.every(n=>a.includes(n)):a.includes(o)});if(s){const l=s.getSourceFile(o);if(l)return{file:l,program:s}}p(`create program for module: ${o}`);const i=te(e);return p(`created program for module: ${o}`),t.programs.push(i.program),i},"createOrGetTsModule"),te=C(({context:e=F,cwd:t,entries:r,id:o,tsconfig:s,tsconfigRaw:i,tsMacro:l,vue:a})=>{const n=x(e.files),c=s?N(s):t,f=u.parseJsonConfigFileContent(i,n,c);return p(`Creating program for root project: ${c}`),re({baseDir:c,entries:r,fsSystem:n,id:o,parsedConfig:f,tsMacro:l,vue:a})},"createTsProgram"),re=C(({baseDir:e,entries:t,fsSystem:r,id:o,parsedConfig:s,tsMacro:i,vue:l})=>{const a={..._,...s.options,$configRaw:s.raw,$rootDir:e},n=[...new Set([o,...t||s.fileNames].map(y=>r.resolvePath(y)))],c=u.createCompilerHost(a,!0),f=Q(u,{tsMacro:i,vue:l})({host:c,options:a,projectReferences:s.projectReferences,rootNames:n}),v=f.getSourceFile(o);if(!v)throw p(`source file not found in program: ${o}`),s.projectReferences?.length?new Error(`[rollup-plugin-dts] Unable to load ${o}; You have "references" in your tsconfig file. Perhaps you want to add \`dts: { build: true }\` in your config?`):r.fileExists(o)?(p(`File ${o} exists on disk.`),new Error(`Unable to load file ${o} from the program. This seems like a bug of rollup-plugin-dts. Please report this issue to https://github.com/sxzz/rollup-plugin-dts/issues`)):(p(`File ${o} does not exist on disk.`),new Error(`Source file not found: ${o}`));return{file:v,program:f}},"createTsProgramFromParsedConfig"),oe=C(e=>{p(`running tscEmitCompiler ${e.id}`);const t=ee(e),{file:r,program:o}=t;p(`got source file: ${r.fileName}`);let s,i;const{diagnostics:l,emitSkipped:a}=o.emit(r,(n,c)=>{n.endsWith(".map")?(p(`emit dts sourcemap: ${n}`),i=JSON.parse(c),R(i,n,e.id)):(p(`emit dts: ${n}`),s=c)},void 0,!0,O,!0);return a&&l.length>0?{error:u.formatDiagnostics(l,M)}:(!s&&r.isDeclarationFile&&(p("nothing was emitted. fallback to sourceFile text."),s=r.getFullText()),{code:s,map:i})},"tscEmitCompiler");var se=Object.defineProperty,ie=h((e,t)=>se(e,"name",{value:t,configurable:!0}),"r");const k=P("rollup-plugin-dts:tsc");k(`loaded typescript: ${u.version}`);const pe=ie(e=>(k(`running tscEmit ${e.id}`),e.build?L(e):oe(e)),"tscEmit");export{pe as tscEmit};
@@ -0,0 +1 @@
1
+ var Se=Object.defineProperty;var C=(e,a)=>Se(e,"name",{value:a,configurable:!0});import ie from"node:path";import{generate as ae}from"@babel/generator";import{isIdentifierName as Ee}from"@babel/helper-validator-identifier";import{parse as oe}from"@babel/parser";import f from"@babel/types";import{isTypeOf as R,isDeclarationType as De,walkAST as V,resolveString as z,isIdentifierOf as X}from"ast-kit";import{RE_DTS as M,resolveTemplateFn as be,filename_js_to_dts as se,replaceTemplateName as le,filename_dts_to as ce,RE_DTS_MAP as ve,filename_to_dts as Te}from"../filename.js";var Ie=Object.defineProperty,v=C((e,a)=>Ie(e,"name",{value:a,configurable:!0}),"c");const U="__rollup_dts_resolve__:",Qe=v(({cjsDefault:e,sideEffects:a,sourcemap:D})=>{let t=0;const _=new Map,j=new Map,K=new Map;return{generateBundle(l,o){const u=new Map;for(const i of Object.values(o))if(i.type==="chunk")for(const m of i.moduleIds)u.set(m,i.fileName);const d=new RegExp(`"${U}(.+?)"`,"g");for(const i of Object.values(o))i.type!=="chunk"||!M.test(i.fileName)||i.code.includes(U)&&(i.code=i.code.replaceAll(d,(m,T)=>{const s=u.get(T);if(!s)return m;let x=ie.posix.relative(ie.posix.dirname(i.fileName),s);return x.startsWith(".")||(x=`./${x}`),x=ce(x,"js"),JSON.stringify(x)}));for(const i of Object.values(o))if(ve.test(i.fileName))if(D){if(i.type==="chunk"||typeof i.source!="string")continue;const m=JSON.parse(i.source);m.sourcesContent=void 0,i.source=JSON.stringify(m)}else delete o[i.fileName]},name:"rollup-plugin-dts:fake-js",outputOptions(l){const{chunkFileNames:o,entryFileNames:u}=l;return(l.format==="cjs"||l.format==="commonjs")&&(l={...l,format:"es"}),{...l,chunkFileNames(d){const i=be(d.isEntry?u||"[name].js":o||"[name]-[hash].js",d);if(d.name.endsWith(".d")){const m=se(le(i,d.name.slice(0,-2)));if(M.test(m))return m;const T=se(le(i,d.name));if(M.test(T))return T}return i},sourcemap:l.sourcemap||D}},renderChunk:O,async transform(l,o){if(M.test(o))return B.call(this,l,o)}};async function B(l,o){const u=Object.create(null),d=oe(l,{createParenthesizedExpressions:!0,errorRecovery:!0,plugins:[["typescript",{dts:!0}],"decoratorAutoAccessors"],sourceType:"module"}),{comments:i,program:m}=d,T=[];if(i){const I=fe(i);j.set(o,I)}const s=[],x=new Map,g=new Map,r=new Set;for(const[I,p]of m.body.entries()){const y=v(c=>m.body[I]=c,"setStmt");if(Ae(p,y,T))continue;const w=p.type==="TSModuleDeclaration"&&p.kind!=="namespace";let W;if(w&&p.id.type==="StringLiteral"){const c=await this.resolve(p.id.value,o);c&&!c.external?W=M.test(c.id)?c.id:Te(c.id):p.id.value[0]==="."&&this.warn(`\`declare module ${JSON.stringify(p.id.value)}\` will be kept as-is in the output. Relative module declaration may cause unexpected issues. Found in ${o}.`)}if(w&&o.endsWith(".vue.d.ts")&&l.slice(p.start,p.end).includes("__VLS_"))continue;const Q=p.type==="ExportDefaultDeclaration",F=R(p,["ExportNamedDeclaration","ExportDefaultDeclaration"])&&p.declaration,b=F?p.declaration:p,L=F?c=>p.declaration=c:y;if(b.type!=="TSDeclareFunction"&&!De(b))continue;R(b,["TSEnumDeclaration","ClassDeclaration","FunctionDeclaration","TSDeclareFunction","TSModuleDeclaration","VariableDeclaration"])&&(b.declare=!0);const n=[];if(b.type==="VariableDeclaration")n.push(...b.declarations.map(c=>c.id));else if("id"in b&&b.id){let c=b.id;c.type==="TSQualifiedName"&&(c=H(c)),c=w?f.identifier(`_${$(u,"")}`):c,n.push(c)}else{const c=f.identifier("export_default");n.push(c),b.id=c}const S=me(b),h=new Set,E=he(b,x,h,u),k=[...h].filter(c=>n.every(N=>c!==N));if(b!==p&&(b.leadingComments=p.leadingComments),b.type==="TSDeclareFunction"&&n.length===1&&g.has(n[0].name)){const c=g.get(n[0].name),N=Y(c);N.overloads||(N.overloads=[],N.primaryDepsCount=N.deps.length,N.primaryParamsCount=N.params.length,N.primaryChildrenCount=N.children.length),N.overloads.push({children:k,childrenOffset:N.children.length,decl:b,deps:E,depsOffset:N.deps.length,params:S,paramsOffset:N.params.length}),N.deps.push(...E),N.params.push(...S),N.children.push(...k),r.add(I);continue}const Z=J({bindings:n,children:k,decl:b,deps:E,params:S,resolvedModuleId:W});b.type==="TSDeclareFunction"&&n.length===1&&g.set(n[0].name,Z);const G=f.numericLiteral(Z),ee=f.arrowFunctionExpression(S.map(({name:c})=>f.identifier(c)),f.arrayExpression(E)),te=f.arrayExpression(k.map(c=>({end:c.end,loc:c.loc,start:c.start,type:"StringLiteral",value:""}))),re=w&&f.callExpression(f.identifier("sideEffect"),[n[0]]),ge=je(re?[G,ee,te,re]:[G,ee,te]),ne={declarations:[{id:{...n[0],typeAnnotation:null},init:ge,type:"VariableDeclarator"},...n.slice(1).map(c=>({id:{...c,typeAnnotation:null},type:"VariableDeclarator"}))],kind:"var",type:"VariableDeclaration"};Q?(s.push(f.exportNamedDeclaration(null,[f.exportSpecifier(n[0],f.identifier("default"))])),y(ne)):L(ne)}return a&&s.push(f.expressionStatement(f.callExpression(f.identifier("sideEffect"),[]))),m.body=[...Array.from(x.values(),({stmt:I})=>I),...m.body.filter((I,p)=>!r.has(p)),...s],K.set(o,T),ae(d,{comments:!1,sourceFileName:o,sourceMaps:D})}function O(l,o){if(!M.test(o.fileName))return;const u=[];for(const s of o.moduleIds){const x=K.get(s);x&&u.push(...x)}const d=oe(l,{sourceType:"module"}),{program:i}=d;if(i.body=ke(i.body),i.body=Pe(i.body),i.body=i.body.flatMap(s=>{if(Me(s))return[];if(s.type==="ExpressionStatement")return[];const x=Oe(s,u,e);if(x===!1)return[];if(x)return[x];if(s.type!=="VariableDeclaration")return[s];if(!Ce(s))return[];const[g,r,I]=s.declarations[0].init.elements,p=g.value,y=Y(p);V(y.decl,{enter(n){n.type!=="CommentBlock"&&delete n.loc}});for(const[n,S]of s.declarations.entries()){const h={...S.id,typeAnnotation:y.bindings[n].typeAnnotation};P(y.bindings[n],h)}const w=y.primaryChildrenCount??y.children.length,W=y.primaryParamsCount??y.params.length,Q=y.primaryDepsCount??y.deps.length;for(let n=0;n<w;n++){const S=I.elements[n];Object.assign(y.children[n],{loc:S.loc})}const F=r.params;for(let n=0;n<W;n++){const S=F[n].name;for(const h of y.params[n].typeParams)h.name=S}const b=r.body.elements;for(let n=0;n<Q;n++){const S=y.deps[n];let h=b[n];h&&h.type==="UnaryExpression"&&h.operator==="void"?h={...f.identifier("undefined"),end:h.end,loc:h.loc,start:h.start}:q(h)&&(h.name="__Infer"),S.replace?S.replace(h):Object.assign(S,h)}y.decl.type==="TSModuleDeclaration"&&y.resolvedModuleId&&(y.decl.id.value=U+y.resolvedModuleId);const L=[];if(y.overloads)for(const n of y.overloads){V(n.decl,{enter(S){S.type!=="CommentBlock"&&delete S.loc}}),"id"in n.decl&&n.decl.id&&P(n.decl.id,{...y.bindings[0]});for(const[S,h]of n.children.entries()){const E=I.elements[n.childrenOffset+S];E&&Object.assign(h,{loc:E.loc})}for(const[S,h]of n.params.entries()){const E=F[n.paramsOffset+S];if(E)for(const k of h.typeParams)k.name=E.name}for(const[S,h]of n.deps.entries()){let E=b[n.depsOffset+S];E&&(E.type==="UnaryExpression"&&E.operator==="void"?E={...f.identifier("undefined"),end:E.end,loc:E.loc,start:E.start}:q(E)&&(E.name="__Infer"),h.replace?h.replace(E):Object.assign(h,E))}L.push(n.decl)}return[Re(s,y.decl),...L]}).filter(s=>!!s),i.body.length===0)return"export { };";const m=new Set,T=new Set;for(const s of o.moduleIds){const x=j.get(s);x&&(x.forEach(g=>{const r=g.type+g.value;T.has(r)||(T.add(r),m.add(g))}),j.delete(s))}return m.size>0&&(i.body[0].leadingComments||=[],i.body[0].leadingComments.unshift(...m)),ae(d,{comments:!0,sourceFileName:o.fileName,sourceMaps:D})}function $(l,o){return o in l?l[o]++:l[o]=0}function J(l){const o=t++;return _.set(o,l),o}function Y(l){return _.get(l)}function me(l){const o=[];V(l,{leave(d){"typeParameters"in d&&d.typeParameters?.type==="TSTypeParameterDeclaration"&&o.push(...d.typeParameters.params)}});const u=new Map;for(const d of o){const{name:i}=d,m=u.get(i);m?m.push(d):u.set(i,[d])}return Array.from(u.entries(),([d,i])=>({name:d,typeParams:i}))}function ye(l){const o=[];return V(l,{enter(u){u.type==="TSInferType"&&u.typeParameter&&o.push(u.typeParameter.name)}}),o}function he(l,o,u,d){const i=new Set,m=new Set,T=[];let s=new Set;function x(r){return r.type==="Identifier"&&s.has(r.name)}return C(x,"p"),v(x,"isInferred"),V(l,{enter(r){if(r.type==="TSConditionalType"){const I=ye(r.extendsType);T.push(I)}},leave(r,I){if(r.type==="TSConditionalType")T.pop();else if(I?.type==="TSConditionalType"){const p=I.trueType===r;s=new Set((p?T:T.slice(0,-1)).flat())}else s=new Set;if(r.type==="ExportNamedDeclaration")for(const p of r.specifiers)p.type==="ExportSpecifier"&&g(p.local);else if(r.type==="TSInterfaceDeclaration"&&r.extends)for(const p of r.extends||[])g(A(p.expression));else if(r.type==="ClassDeclaration"){if(r.superClass&&g(r.superClass),r.implements)for(const p of r.implements)p.type!=="ClassImplements"&&g(A(p.expression))}else if(R(r,["ObjectMethod","ObjectProperty","ClassProperty","TSPropertySignature","TSDeclareMethod"]))r.computed&&pe(r.key)&&g(r.key),"value"in r&&pe(r.value)&&g(r.value);else switch(r.type){case"TSImportType":{m.add(r);const p=r.argument,y=r.qualifier,w=xe(r,y,p,o,d);g(w);break}case"TSTypeQuery":{if(m.has(r.exprName))return;if(r.exprName.type==="TSImportType")break;g(A(r.exprName));break}case"TSTypeReference":{g(A(r.typeName));break}}I&&!i.has(r)&&de(r,I)&&u.add(r)}}),[...i];function g(r){ue(r)||x(r)||i.add(r)}C(g,"x")}function xe(l,o,u,d,i){const m=u.value.replaceAll(/\W/g,"_"),T=Ee(u.value)?u.value:`${m}${$(i,m)}`;let s=f.identifier(T);if(d.has(u.value)?s=d.get(u.value).local:d.set(u.value,{local:s,stmt:f.importDeclaration([f.importNamespaceSpecifier(s)],u)}),o){const g=H(o);P(g,f.tsQualifiedName(s,{...g})),s=o}let x=l;return l.typeParameters?(P(l,f.tsTypeReference(s,l.typeParameters)),x=s):P(l,s),{...A(s),replace(g){P(x,g)}}}},"createFakeJsPlugin");function de(e,a){return!!(e.type==="Identifier"||R(a,["TSPropertySignature","TSMethodSignature"])&&a.key===e)}C(de,"be");v(de,"isChildSymbol");const Ne=/\/\s*<reference\s+(?:path|types)=/,fe=v((e,a=!1)=>e.filter(D=>Ne.test(D.value)!==a),"collectReferenceDirectives"),Ce=v(e=>f.isVariableDeclaration(e)&&e.declarations.length>0&&f.isVariableDeclarator(e.declarations[0])&&_e(e.declarations[0].init),"isRuntimeBindingVariableDeclaration"),_e=v(e=>f.isArrayExpression(e)&&we(e.elements),"isRuntimeBindingArrayExpression"),je=v(e=>f.arrayExpression(e),"runtimeBindingArrayExpression"),we=v(e=>{const[a,D,t,_]=e;return a?.type==="NumericLiteral"&&D?.type==="ArrowFunctionExpression"&&t?.type==="ArrayExpression"&&(!_||_.type==="CallExpression")},"isRuntimeBindingArrayElements"),q=v(e=>X(e,"infer"),"isInfer"),ue=v(e=>X(e,"this")||e.type==="ThisExpression"||e.type==="MemberExpression"&&ue(e.object),"isThisExpression"),A=v(e=>{if(e.type==="Identifier")return e;const a=A(e.left);return Object.assign(e,f.memberExpression(a,e.right))},"TSEntityNameToRuntime"),H=v(e=>e.type==="Identifier"?e:H(e.left),"getIdFromTSEntityName"),pe=v(e=>R(e,["Identifier","MemberExpression"]),"isReferenceId"),Me=v(e=>e.type==="ImportDeclaration"&&e.specifiers.length===1&&e.specifiers.every(a=>a.type==="ImportSpecifier"&&a.imported.type==="Identifier"&&["__export","__reExport"].includes(a.local.name)),"isHelperImport"),Oe=v((e,a,D)=>{if(e.type==="ExportNamedDeclaration"&&!e.declaration&&!e.source&&e.specifiers.length===0&&!e.attributes?.length)return!1;if(e.type==="ImportDeclaration"&&e.specifiers.length)for(const t of e.specifiers)q(t.local)&&(t.local.name="__Infer");if(R(e,["ImportDeclaration","ExportAllDeclaration","ExportNamedDeclaration"])){if(e.type==="ExportNamedDeclaration"&&a.length>0)for(const t of e.specifiers){const _=z(t.exported);a.includes(_)&&(t.type==="ExportSpecifier"?t.exportKind="type":e.exportKind="type")}if(e.source?.value&&M.test(e.source.value))return e.source.value=ce(e.source.value,"js"),e;if(D&&e.type==="ExportNamedDeclaration"&&!e.source&&e.specifiers.length===1&&e.specifiers[0].type==="ExportSpecifier"&&z(e.specifiers[0].exported)==="default")return{expression:e.specifiers[0].local,type:"TSExportAssignment"}}},"patchImportExport"),ke=v(e=>{const a=new Set;for(const[t,_]of e.entries()){const j=D(_);if(!j)continue;const[K,B]=j;B.properties.length!==0&&(e[t]={body:{body:[{declaration:null,source:null,specifiers:B.properties.filter(O=>O.type==="ObjectProperty").map(O=>{const $=O.value.body,J=O.key;return f.exportSpecifier($,J)}),type:"ExportNamedDeclaration"}],type:"TSModuleBlock"},declare:!0,id:K,kind:"namespace",type:"TSModuleDeclaration"})}return e.filter(t=>!a.has(t));function D(t){if(t.type!=="VariableDeclaration"||t.declarations.length!==1||t.declarations[0].id.type!=="Identifier"||t.declarations[0].init?.type!=="CallExpression"||t.declarations[0].init.callee.type!=="Identifier"||t.declarations[0].init.callee.name!=="__export"||t.declarations[0].init.arguments.length!==1||t.declarations[0].init.arguments[0].type!=="ObjectExpression")return!1;const _=t.declarations[0].id,j=t.declarations[0].init.arguments[0];return[_,j]}},"patchTsNamespace"),Pe=v(e=>{const a=new Map;for(const[D,t]of e.entries())if(t.type==="ImportDeclaration"&&t.specifiers.length===1&&t.specifiers[0].type==="ImportSpecifier"&&t.specifiers[0].local.type==="Identifier"&&t.specifiers[0].local.name.endsWith("_exports"))a.set(t.specifiers[0].local.name,t.specifiers[0].local.name);else if(t.type==="ExpressionStatement"&&t.expression.type==="CallExpression"&&X(t.expression.callee,"__reExport")){const _=t.expression.arguments;a.set(_[0].name,_[1].name)}else t.type==="VariableDeclaration"&&t.declarations.length===1&&t.declarations[0].init?.type==="MemberExpression"&&t.declarations[0].init.object.type==="Identifier"&&a.has(t.declarations[0].init.object.name)?e[D]={id:{name:t.declarations[0].id.name,type:"Identifier"},type:"TSTypeAliasDeclaration",typeAnnotation:{type:"TSTypeReference",typeName:{left:{name:a.get(t.declarations[0].init.object.name),type:"Identifier"},right:{name:t.declarations[0].init.property.name,type:"Identifier"},type:"TSQualifiedName"}}}:t.type==="ExportNamedDeclaration"&&t.specifiers.length===1&&t.specifiers[0].type==="ExportSpecifier"&&t.specifiers[0].local.type==="Identifier"&&a.has(t.specifiers[0].local.name)&&(t.specifiers[0].local.name=a.get(t.specifiers[0].local.name));return e},"patchReExport"),Ae=v((e,a,D)=>{if(e.type==="ImportDeclaration"||e.type==="ExportNamedDeclaration"&&!e.declaration){for(const t of e.specifiers)("exportKind"in t&&t.exportKind==="type"||"exportKind"in e&&e.exportKind==="type")&&D.push(z(t.exported)),t.type==="ImportSpecifier"?t.importKind="value":t.type==="ExportSpecifier"&&(t.exportKind="value");return e.type==="ImportDeclaration"?e.importKind="value":e.type==="ExportNamedDeclaration"&&(e.exportKind="value"),!0}return e.type==="ExportAllDeclaration"?(e.exportKind="value",!0):e.type==="TSImportEqualsDeclaration"?(e.moduleReference.type==="TSExternalModuleReference"&&a({source:e.moduleReference.expression,specifiers:[{local:e.id,type:"ImportDefaultSpecifier"}],type:"ImportDeclaration"}),!0):e.type==="TSExportAssignment"&&e.expression.type==="Identifier"?(a({specifiers:[{exported:{name:"default",type:"Identifier"},local:e.expression,type:"ExportSpecifier"}],type:"ExportNamedDeclaration"}),!0):e.type==="ExportDefaultDeclaration"&&e.declaration.type==="Identifier"?(a({specifiers:[{exported:f.identifier("default"),local:e.declaration,type:"ExportSpecifier"}],type:"ExportNamedDeclaration"}),!0):!1},"rewriteImportExport"),P=v((e,a)=>{for(const D of Object.keys(e))delete e[D];return Object.assign(e,a),e},"overwriteNode"),Re=v((e,a)=>{a.leadingComments||=[];const D=e.leadingComments?.filter(t=>t.value.startsWith("#"));return D&&a.leadingComments.unshift(...D),a.leadingComments=fe(a.leadingComments,!0),a},"inheritNodeComments");export{Qe as default};
@@ -0,0 +1 @@
1
+ import"node:child_process";import"node:fs";import"node:fs/promises";import"node:path";import"@babel/parser";import"obug";import"oxc-transform";import"@rollup/pluginutils";import"../filename.js";import{c as g}from"./generate-BnWcSpbk.js";export{g as createGeneratePlugin};
@@ -0,0 +1,9 @@
1
+ var ur=Object.defineProperty;var ne=(s,i)=>ur(s,"name",{value:i,configurable:!0});import{spawn as pr,fork as fr}from"node:child_process";import{existsSync as Ee,readFileSync as dr}from"node:fs";import{mkdtemp as gr,readFile as Ze,rm as mr}from"node:fs/promises";import z from"node:path";import{parse as Qe}from"@babel/parser";import{createDebug as Ae}from"obug";import{transformSync as hr,isolatedDeclarationSync as xr}from"oxc-transform";import{createFilter as yr}from"@rollup/pluginutils";import{RE_DTS as R,RE_NODE_MODULES as ge,RE_JS as oe,filename_to_dts as Ue,RE_JSON as qe,RE_TS as Ge,RE_VUE as Me,resolveTemplateFn as $r,replaceTemplateName as ke,RE_DTS_MAP as Ve}from"../filename.js";import{createRequire as wr}from"node:module";import{tmpdir as vr}from"node:os";var br=Object.defineProperty,a=ne((s,i)=>br(s,"name",{value:i,configurable:!0}),"s");let Ke=a(()=>{var s=(()=>{var i=Object.defineProperty,l=Object.getOwnPropertyDescriptor,c=Object.getOwnPropertyNames,f=Object.prototype.hasOwnProperty,w=a((e,t)=>{for(var r in t)i(e,r,{get:t[r],enumerable:!0})},"ne"),k=a((e,t,r,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of c(t))!f.call(e,n)&&n!==r&&i(e,n,{get:a(()=>t[n],"get"),enumerable:!(o=l(t,n))||o.enumerable});return e},"ae"),j=a(e=>k(i({},"__esModule",{value:!0}),e),"oe"),C={};w(C,{zeptomatch:a(()=>Le,"zeptomatch")});var U=a(e=>{const t=new Set,r=[e];for(let o=0;o<r.length;o++){const n=r[o];if(t.has(n))continue;t.add(n);const{children:u}=n;if(u?.length)for(let g=0,y=u.length;g<y;g++)r.push(u[g])}return Array.from(t)},"M"),le=a(e=>{let t="";const r=U(e);for(let o=0,n=r.length;o<n;o++){const u=r[o];if(!u.regex)continue;const g=u.regex.flags;if(t||(t=g),t!==g)throw new Error(`Inconsistent RegExp flags used: "${t}" and "${g}"`)}return t},"se"),q=a((e,t,r)=>{const o=r.get(e);if(o!==void 0)return o;const n=e.partial??t;let u="";if(e.regex&&(u+=n?"(?:$|":"",u+=e.regex.source),e.children?.length){const g=he(e.children.map(y=>q(y,t,r)).filter(Boolean));if(g?.length){const y=e.children.some(te=>!te.regex||!(te.partial??t)),b=g.length>1||n&&(!u.length||y);u+=b?n?"(?:$|":"(?:":"",u+=g.join("|"),u+=b?")":""}}return e.regex&&(u+=n?")":""),r.set(e,u),u},"O"),G=a((e,t)=>{const r=new Map,o=U(e);for(let n=o.length-1;n>=0;n--){const u=q(o[n],t,r);if(!(n>0))return u}return""},"ie"),he=a(e=>Array.from(new Set(e)),"ue"),N=a((e,t,r)=>N.compile(e,r).test(t),"R");N.compile=(e,t)=>{const r=t?.partial??!1,o=G(e,r),n=le(e);return new RegExp(`^(?:${o})$`,n)};var xe=N,ye=a((e,t)=>{const r=xe.compile(e,t),o=`${r.source.slice(0,-1)}[\\\\/]?$`,n=r.flags;return new RegExp(o,n)},"le"),ce=ye,_=a(e=>{const t=e.map(o=>o.source).join("|")||"$^",r=e[0]?.flags;return new RegExp(t,r)},"ve"),ue=_,W=a(e=>Array.isArray(e),"j"),P=a(e=>typeof e=="function","_"),X=a(e=>e.length===0,"he"),V=(()=>{const{toString:e}=Function.prototype,t=/(?:^\(\s*(?:[^,.()]|\.(?!\.\.))*\s*\)\s*=>|^\s*[a-zA-Z$_][a-zA-Z0-9$_]*\s*=>)/;return r=>(r.length===0||r.length===1)&&t.test(e.call(r))})(),B=a(e=>typeof e=="number","de"),pe=a(e=>typeof e=="object"&&e!==null,"xe"),x=a(e=>e instanceof RegExp,"me"),m=(()=>{const e=/\\\(|\((?!\?(?::|=|!|<=|<!))/;return t=>e.test(t.source)})(),h=(()=>{const e=/^[a-zA-Z0-9_-]+$/;return t=>e.test(t.source)&&!t.flags.includes("i")})(),d=a(e=>typeof e=="string","A"),$=a(e=>e===void 0,"f"),E=a(e=>{const t=new Map;return r=>{const o=t.get(r);if(o!==void 0)return o;const n=e(r);return t.set(r,n),n}},"ye"),M=a((e,t,r={})=>{const o={cache:{},input:e,index:0,indexBacktrackMax:0,options:r,output:[]},n=D(t)(o),u=Math.max(o.index,o.indexBacktrackMax);if(n&&o.index===e.length)return o.output;throw new Error(`Failed to parse at index ${u}`)},"I"),p=a((e,t)=>W(e)?O(e,t):d(e)?Y(e,t):J(e,t),"i"),O=a((e,t)=>{const r={};for(const o of e){if(o.length!==1)throw new Error(`Invalid character: "${o}"`);const n=o.charCodeAt(0);r[n]=!0}return o=>{const n=o.input;let u=o.index,g=u;for(;g<n.length&&n.charCodeAt(g)in r;)g+=1;if(g>u){if(!$(t)&&!o.options.silent){const y=n.slice(u,g),b=P(t)?t(y,n,`${u}`):t;$(b)||o.output.push(b)}o.index=g}return!0}},"we"),J=a((e,t)=>{if(h(e))return Y(e.source,t);{const r=e.source,o=e.flags.replace(/y|$/,"y"),n=new RegExp(r,o);return m(e)&&P(t)&&!V(t)?T(n,t):fe(n,t)}},"$e"),T=a((e,t)=>r=>{const o=r.index,n=r.input;e.lastIndex=o;const u=e.exec(n);if(u){const g=e.lastIndex;if(!r.options.silent){const y=t(...u,n,`${o}`);$(y)||r.output.push(y)}return r.index=g,!0}else return!1},"Ee"),fe=a((e,t)=>r=>{const o=r.index,n=r.input;if(e.lastIndex=o,e.test(n)){const u=e.lastIndex;if(!$(t)&&!r.options.silent){const g=P(t)?t(n.slice(o,u),n,`${o}`):t;$(g)||r.output.push(g)}return r.index=u,!0}else return!1},"Ce"),Y=a((e,t)=>r=>{const o=r.index,n=r.input;if(n.startsWith(e,o)){if(!$(t)&&!r.options.silent){const u=P(t)?t(e,n,`${o}`):t;$(u)||r.output.push(u)}return r.index+=e.length,!0}else return!1},"F"),$e=a((e,t,r,o)=>{const n=D(e),u=t>1;return ve(we(Re(g=>{let y=0;for(;y<r;){const b=g.index;if(!n(g)||(y+=1,g.index===b))break}return y>=t},u),o))},"k"),Oe=a((e,t)=>$e(e,0,1,t),"L"),de=a((e,t)=>$e(e,0,1/0,t),"$"),nt=a((e,t)=>$e(e,1,1/0,t),"Re"),K=a((e,t)=>{const r=e.map(D);return ve(we(Re(o=>{for(let n=0,u=r.length;n<u;n++)if(!r[n](o))return!1;return!0}),t))},"x"),A=a((e,t)=>{const r=e.map(D);return ve(we(o=>{for(let n=0,u=r.length;n<u;n++)if(r[n](o))return!0;return!1},t))},"p"),Re=a((e,t=!0,r=!1)=>{const o=D(e);return t?n=>{const u=n.index,g=n.output.length,y=o(n);return!y&&!r&&(n.indexBacktrackMax=Math.max(n.indexBacktrackMax,n.index)),(!y||r)&&(n.index=u,n.output.length!==g&&(n.output.length=g)),y}:o},"q"),we=a((e,t)=>{const r=D(e);return t?o=>{if(o.options.silent)return r(o);const n=o.output.length;if(r(o)){const u=o.output.splice(n,1/0),g=t(u);return $(g)||o.output.push(g),!0}else return!1}:r},"B"),ve=(()=>{let e=0;return t=>{const r=D(t),o=e+=1;return n=>{var u;if(n.options.memoization===!1)return r(n);const g=n.index,y=(u=n.cache)[o]||(u[o]={indexMax:-1,queue:[]}),b=y.queue;if(g<=y.indexMax){const re=y.store||(y.store=new Map);if(b.length){for(let Q=0,ar=b.length;Q<ar;Q+=2){const lr=b[Q*2],cr=b[Q*2+1];re.set(lr,cr)}b.length=0}const S=re.get(g);if(S===!1)return!1;if(B(S))return n.index=S,!0;if(S)return n.index=S.index,S.output?.length&&n.output.push(...S.output),!0}const te=n.output.length,ir=r(n);if(y.indexMax=Math.max(y.indexMax,g),ir){const re=n.index,S=n.output.length;if(S>te){const Q=n.output.slice(te,S);b.push(g,{index:re,output:Q})}else b.push(g,re);return!0}else return b.push(g,!1),!1}}})(),Ie=a(e=>{let t;return r=>(t||(t=D(e())),t(r))},"G"),D=E(e=>{if(P(e))return X(e)?Ie(e):e;if(d(e)||x(e))return p(e);if(W(e))return K(e);if(pe(e))return A(Object.values(e));throw new Error("Invalid rule")}),L=a(e=>e,"d"),ot=a(e=>typeof e=="string","ke"),st=a(e=>{const t=new WeakMap,r=new WeakMap;return(o,n)=>{const u=n?.partial?r:t,g=u.get(o);if(g!==void 0)return g;const y=e(o,n);return u.set(o,y),y}},"Be"),it=a(e=>{const t={},r={};return(o,n)=>{const u=n?.partial?r:t;return u[o]??(u[o]=e(o,n))}},"Pe"),at=p(/\\./,L),lt=p(/./,L),ct=p(/\*\*\*+/,"*"),ut=p(/([^/{[(!])\*\*/,(e,t)=>`${t}*`),pt=p(/(^|.)\*\*(?=[^*/)\]}])/,(e,t)=>`${t}*`),ft=de(A([at,ct,ut,pt,lt])),dt=ft,gt=a(e=>M(e,dt,{memoization:!1}).join(""),"Ie"),mt=gt,ze="abcdefghijklmnopqrstuvwxyz",ht=a(e=>{let t="";for(;e>0;){const r=(e-1)%26;t=ze[r]+t,e=Math.floor((e-1)/26)}return t},"Le"),Ce=a(e=>{let t=0;for(let r=0,o=e.length;r<o;r++)t=t*26+ze.indexOf(e[r])+1;return t},"V"),be=a((e,t)=>{if(t<e)return be(t,e);const r=[];for(;e<=t;)r.push(e++);return r},"b"),xt=a((e,t,r)=>be(e,t).map(o=>String(o).padStart(r,"0")),"qe"),Pe=a((e,t)=>be(Ce(e),Ce(t)).map(ht),"W"),v=a(e=>({partial:!1,regex:new RegExp(e,"s"),children:[]}),"c"),ee=a(e=>({children:e}),"y"),H=(()=>{const e=a((t,r,o)=>{if(o.has(t))return;o.add(t);const{children:n}=t;if(!n.length)n.push(r);else for(let u=0,g=n.length;u<g;u++)e(n[u],r,o)},"e");return t=>{if(!t.length)return ee([]);for(let r=t.length-1;r>=1;r--){const o=new Set,n=t[r-1],u=t[r];e(n,u,o)}return t[0]}})(),F=a(()=>({regex:new RegExp("[\\\\/]","s"),children:[]}),"g"),yt=p(/\\./,v),$t=p(/[$.*+?^(){}[\]\|]/,e=>v(`\\${e}`)),wt=p(/[\\\/]/,F),vt=p(/[^$.*+?^(){}[\]\|\\\/]+/,v),bt=p(/^(?:!!)*!(.*)$/,(e,t)=>v(`(?!^${Le.compile(t).source}$).*?`)),jt=p(/^(!!)+/),Et=A([bt,jt]),Mt=p(/\/(\*\*\/)+/,()=>ee([H([F(),v(".+?"),F()]),F()])),kt=p(/^(\*\*\/)+/,()=>ee([v("^"),H([v(".*?"),F()])])),_t=p(/\/(\*\*)$/,()=>ee([H([F(),v(".*?")]),v("$")])),At=p(/\*\*/,()=>v(".*?")),De=A([Mt,kt,_t,At]),St=p(/\*\/(?!\*\*\/|\*$)/,()=>H([v("[^\\\\/]*?"),F()])),Ot=p(/\*/,()=>v("[^\\\\/]*")),Fe=A([St,Ot]),Ne=p("?",()=>v("[^\\\\/]")),Rt=p("[",L),It=p("]",L),zt=p(/[!^]/,"^\\\\/"),Ct=p(/[a-z]-[a-z]|[0-9]-[0-9]/i,L),Pt=p(/\\./,L),Dt=p(/[$.*+?^(){}[\|]/,e=>`\\${e}`),Ft=p(/[\\\/]/,"\\\\/"),Nt=p(/[^$.*+?^(){}[\]\|\\\/]+/,L),Wt=A([Pt,Dt,Ft,Ct,Nt]),We=K([Rt,Oe(zt),de(Wt),It],e=>v(e.join(""))),Bt=p("{","(?:"),Jt=p("}",")"),Tt=p(/(\d+)\.\.(\d+)/,(e,t,r)=>xt(+t,+r,Math.min(t.length,r.length)).join("|")),Lt=p(/([a-z]+)\.\.([a-z]+)/,(e,t,r)=>Pe(t,r).join("|")),Zt=p(/([A-Z]+)\.\.([A-Z]+)/,(e,t,r)=>Pe(t.toLowerCase(),r.toLowerCase()).join("|").toUpperCase()),Ut=A([Tt,Lt,Zt]),Be=K([Bt,Ut,Jt],e=>v(e.join(""))),qt=p("{"),Gt=p("}"),Vt=p(","),Kt=p(/\\./,v),Ht=p(/[$.*+?^(){[\]\|]/,e=>v(`\\${e}`)),Qt=p(/[\\\/]/,F),Xt=p(/[^$.*+?^(){}[\]\|\\\/,]+/,v),Yt=Ie(()=>Te),er=p("",()=>v("(?:)")),tr=nt(A([De,Fe,Ne,We,Be,Yt,Kt,Ht,Qt,Xt]),H),Je=A([tr,er]),Te=K([qt,Oe(K([Je,de(K([Vt,Je]))])),Gt],ee),rr=de(A([Et,De,Fe,Ne,We,Be,Te,yt,$t,wt,vt]),H),nr=rr,or=a(e=>M(e,nr,{memoization:!1})[0],"kr"),sr=or,je=a((e,t,r)=>je.compile(e,r).test(t),"N");je.compile=(()=>{const e=it((r,o)=>ce(sr(mt(r)),o)),t=st((r,o)=>ue(r.map(n=>e(n,o))));return(r,o)=>ot(r)?e(r,o):t(r,o)})();var Le=je;return j(C)})();return s.default||s},"_lazyMatch"),_e;const jr=a((s,i)=>(_e||(_e=Ke(),Ke=null),_e(s,i)),"zeptomatch"),Er=/^[A-Z]:\//i,Z=a((s="")=>s&&s.replaceAll("\\","/").replace(Er,i=>i.toUpperCase()),"normalizeWindowsPath"),Mr=/^[/\\]{2}/,kr=/^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Z]:[/\\]/i,Xe=/^[A-Z]:$/i,He=/^\/([A-Z]:)?$/i,_r=/.(\.[^./]+)$/,Ar=/^[/\\]|^[a-z]:[/\\]/i,Sr=a(()=>typeof process.cwd=="function"?process.cwd().replaceAll("\\","/"):"/","cwd"),Ye=a((s,i)=>{let l="",c=0,f=-1,w=0,k;for(let j=0;j<=s.length;++j){if(j<s.length)k=s[j];else{if(k==="/")break;k="/"}if(k==="/"){if(!(f===j-1||w===1))if(w===2){if(l.length<2||c!==2||!l.endsWith(".")||l.at(-2)!=="."){if(l.length>2){const C=l.lastIndexOf("/");C===-1?(l="",c=0):(l=l.slice(0,C),c=l.length-1-l.lastIndexOf("/")),f=j,w=0;continue}else if(l.length>0){l="",c=0,f=j,w=0;continue}}i&&(l+=l.length>0?"/..":"..",c=2)}else l.length>0?l+=`/${s.slice(f+1,j)}`:l=s.slice(f+1,j),c=j-f-1;f=j,w=0}else k==="."&&w!==-1?++w:w=-1}return l},"normalizeString"),ae=a(s=>kr.test(s),"isAbsolute"),et=a(function(s){if(s.length===0)return".";s=Z(s);const i=Mr.exec(s),l=ae(s),c=s.at(-1)==="/";return s=Ye(s,!l),s.length===0?l?"/":c?"./":".":(c&&(s+="/"),Xe.test(s)&&(s+="/"),i?l?`//${s}`:`//./${s}`:l&&!ae(s)?`/${s}`:s)},"normalize");a((...s)=>{let i="";for(const l of s)if(l)if(i.length>0){const c=i[i.length-1]==="/",f=l[0]==="/";c&&f?i+=l.slice(1):i+=c||f?l:`/${l}`}else i+=l;return et(i)},"join");const me=a(function(...s){s=s.map(c=>Z(c));let i="",l=!1;for(let c=s.length-1;c>=-1&&!l;c--){const f=c>=0?s[c]:Sr();!f||f.length===0||(i=`${f}/${i}`,l=ae(f))}return i=Ye(i,!l),l&&!ae(i)?`/${i}`:i.length>0?i:"."},"resolve");a(function(s){return Z(s)},"toNamespacedPath");const Or=a(function(s){return _r.exec(Z(s))?.[1]??""},"extname");a(function(s,i){const l=me(s).replace(He,"$1").split("/"),c=me(i).replace(He,"$1").split("/");if(c[0][1]===":"&&l[0][1]===":"&&l[0]!==c[0])return c.join("/");const f=[...l];for(const w of f){if(c[0]!==w)break;l.shift(),c.shift()}return[...l.map(()=>".."),...c].join("/")},"relative");const Rr=a(s=>{const i=Z(s).replace(/\/$/,"").split("/").slice(0,-1);return i.length===1&&Xe.test(i[0])&&(i[0]+="/"),i.join("/")||(ae(s)?"/":".")},"dirname");a(function(s){const i=[s.root,s.dir,s.base??s.name+s.ext].filter(Boolean);return Z(s.root?me(...i):i.join("/"))},"format");const Ir=a((s,i)=>{const l=Z(s).split("/").pop();return i&&l.endsWith(i)?l.slice(0,-i.length):l},"basename");a(function(s){const i=Ar.exec(s)?.[0]?.replaceAll("\\","/")??"",l=Ir(s),c=Or(l);return{base:l,dir:Rr(s),ext:c,name:l.slice(0,l.length-c.length),root:i}},"parse");a((s,i)=>jr(i,et(s)),"matchesGlob");var zr=Object.defineProperty,tt=ne((s,i)=>zr(s,"name",{value:i,configurable:!0}),"r");const Cr=Ae("rollup-plugin-dts:tsc-context"),rt=tt(()=>({files:new Map,programs:[],projects:new Map}),"createContext"),Pr=tt((s,i)=>{i=me(i).replaceAll("\\","/"),Cr(`invalidating context file: ${i}`),s.files.delete(i),s.programs=s.programs.filter(l=>!l.getSourceFiles().some(c=>c.fileName===i)),s.projects.clear()},"invalidateContextFile"),Dr=rt();var Fr=Object.defineProperty,Se=ne((s,i)=>Fr(s,"name",{value:i,configurable:!0}),"i");const se=Ae("rollup-plugin-dts:tsgo"),Nr=Se((...s)=>new Promise((i,l)=>{const c=pr(...s);c.on("close",()=>i()),c.on("error",f=>l(f))}),"spawnAsync"),Wr=Se(()=>{const s=wr(import.meta.url),i=s.resolve("@typescript/native-preview/package.json"),l=z.dirname(i),c=s(z.join(l,"lib","getExePath.js"));return(typeof c=="function"?c:c.default)()},"getTsgoPathFromNodeModules"),Br=Se(async(s,i,l,c)=>{se("[tsgo] rootDir",s);let f;c?(f=c,se("[tsgo] using custom path",f)):(f=Wr(),se("[tsgo] using tsgo from node_modules",f));const w=await gr(z.join(vr(),"rollup-plugin-dts-"));se("[tsgo] tsgoDist",w);const k=["--noEmit","false","--declaration","--emitDeclarationOnly",...i?["-p",i]:[],"--outDir",w,"--rootDir",s,"--noCheck",...l?["--declarationMap"]:[]];return se("[tsgo] args %o",k),await Nr(f,k,{stdio:"inherit"}),w},"runTsgo");var Jr=Object.defineProperty,ie=ne((s,i)=>Jr(s,"name",{value:i,configurable:!0}),"y");const I=Ae("rollup-plugin-dts:generate"),Tr=import.meta.WORKER_URL??"./tsc/worker.js",nn=ie(({build:s,cwd:i,eager:l,emitDtsOnly:c,emitJs:f,exclude:w,include:k,incremental:j,newContext:C,oxc:U,parallel:le,sourcemap:q,tsconfig:G,tsconfigRaw:he,tsgo:N,tsMacro:xe,vue:ye})=>{const ce=k||w?yr(k,w):null,_=new Map,ue=new Map;let W,P,X,V,B;const pe=G?z.dirname(G):i;return{async buildEnd(){W?.kill(),!I.enabled&&B&&await mr(B,{force:!0,recursive:!0}).catch(()=>{}),B=void 0,C&&(V=void 0)},async buildStart(x){if(N?B=await Br(pe,G,q,N.path):U||(le?(W=fr(new URL(Tr,import.meta.url),{stdio:"inherit"}),P=(await import("birpc")).createBirpc({},{on:ie(m=>W.on("message",m),"on"),post:ie(m=>W.send(m),"post")})):(X=await import("../packem_chunks/index.js"),C&&(V=rt()))),!Array.isArray(x.input))for(const[m,h]of Object.entries(x.input)){I("resolving input alias %s -> %s",m,h);let d=await this.resolve(h);h.startsWith("./")||(d||=await this.resolve(`./${h}`));const $=d?.id||h;I("resolved input alias %s -> %s",h,$),ue.set($,m)}},generateBundle(x,m){for(const h of Object.keys(m)){const d=m[h];if(d){if(d.type==="asset"&&Ve.test(h)&&typeof d.source=="string"){const $=JSON.parse(d.source);$.names=[],delete $.sourcesContent,d.source=JSON.stringify($)}c&&d.type==="chunk"&&!R.test(h)&&!Ve.test(h)&&delete m[h]}}},load:{filter:{id:{exclude:[ge],include:[R]}},async handler(x){if(!_.has(x))return;const{code:m,id:h}=_.get(x);let d,$;if(I("generate dts %s from %s",x,h),N){if(Me.test(h))throw new Error("tsgo does not support Vue files.");const E=z.resolve(B,z.relative(pe,Ue(h)));if(Ee(E)){if(d=await Ze(E,"utf8"),q){const M=`${E}.map`;Ee(M)&&($=JSON.parse(await Ze(M,"utf8")))}}else throw I("[tsgo]",E,"is missing"),new Error(`tsgo did not generate dts file for ${h}, please check your tsconfig.`)}else if(U&&!Me.test(h)){const E=xr(h,m,U);if(E.errors.length>0){const[M]=E.errors;return this.error({frame:M?.codeframe||void 0,message:M?.codeframe?`${M.message}
2
+ ${M.codeframe}`:M?.message??"Unknown error"})}d=E.code,E.map&&($=E.map,$.sourcesContent=void 0,$.names=[])}else{const E=l?void 0:[..._.values()].filter(O=>O.isEntry).map(O=>O.id),M={build:s,context:V,cwd:i,entries:E,id:h,incremental:j,sourcemap:q,tsconfig:G,tsconfigRaw:he,tsMacro:xe,vue:ye};let p;if(p=le?await P.tscEmit(M):X.tscEmit(M),p.error)return this.error(p.error);if(d=p.code,$=p.map,d&&qe.test(h))if(d.includes("declare const _exports")){if(d.includes("declare const _exports: {")&&!d.includes(`
3
+ }[];`)){const O=Zr(d);let J=0;d+=O.map(T=>{const fe=`_${T.replaceAll(/[^\w$]/g,"_")}${J++}`,Y=JSON.stringify(T);return`declare let ${fe}: typeof _exports[${Y}]
4
+ export { ${fe} as ${Y} }`}).join(`
5
+ `)}}else{const O=Lr(d);d+=`
6
+ declare namespace __json_default_export {
7
+ export { ${Array.from(O.entries(),([J,T])=>J===T?J:`${T} as ${J}`).join(", ")} }
8
+ }
9
+ export { __json_default_export as default }`}}return{code:d||"",map:$}}},name:"rollup-plugin-dts:generate",outputOptions(x){return{...x,entryFileNames(m){const{entryFileNames:h}=x,d=$r(h||"[name].js",m);if(m.name.endsWith(".d")){if(R.test(d))return ke(d,m.name.slice(0,-2));if(oe.test(d))return d.replace(oe,".$1ts")}else if(c){if(m.facadeModuleId&&R.test(m.facadeModuleId)){if(R.test(d))return ke(d,m.name);if(oe.test(d))return d.replace(oe,".$1ts")}return ke("[name].js",m.name)}return d}}},async resolveId(x,m){if(_.has(x))return I("resolve dts id %s",x),{id:x};if(!m&&R.test(x)&&!ge.test(x)){const h=z.isAbsolute(x)?x:z.resolve(i,x),d=h.replace(R,".$1ts");if(!_.has(h)&&Ee(d)){const $=dr(d,"utf8");_.set(h,{code:$,id:d,isEntry:!0}),I("populated dtsMap from source for cached re-resolution: %s",h)}return _.has(h)?(I("resolve dts id %s (from cache re-resolution)",h),{id:h}):null}if(m&&Ge.test(m)&&(x.startsWith("./")||x.startsWith("../"))&&!z.extname(x))for(const h of[".ts",".tsx",".mts",".cts"]){const d=await this.resolve(x+h,m,{skipSelf:!0});if(d)return d}return null},shouldTransformCachedModule({id:x}){return R.test(x)&&!ge.test(x)},transform:{handler(x,m){if(!(R.test(m)||ge.test(m)||ce&&!ce(m))){if(!oe.test(m)||f){const h=!!this.getModuleInfo(m)?.isEntry,d=Ue(m);if(_.set(d,{code:x,id:m,isEntry:h}),I("register dts source: %s",m),h){const $=ue.get(m);this.emitFile({id:d,name:$?`${$}.d`:void 0,type:"chunk"})}}return c?qe.test(m)?"{}":"export { }":Ge.test(m)||Me.test(m)?hr(m,x,{}).code:null}},order:"pre"},watchChange(x){X&&Pr(V||Dr,x)}}},"createGeneratePlugin"),Lr=ie(s=>{const i=new Map,{program:l}=Qe(s,{errorRecovery:!0,plugins:[["typescript",{dts:!0}]],sourceType:"module"});for(const c of l.body)if(c.type==="ExportNamedDeclaration"){if(c.declaration)if(c.declaration.type==="VariableDeclaration")for(const f of c.declaration.declarations)f.id.type==="Identifier"&&i.set(f.id.name,f.id.name);else c.declaration.type==="TSModuleDeclaration"&&c.declaration.id.type==="Identifier"&&i.set(c.declaration.id.name,c.declaration.id.name);else if(c.specifiers.length>0)for(const f of c.specifiers)f.type==="ExportSpecifier"&&f.exported.type==="Identifier"&&i.set(f.exported.name,f.local.type==="Identifier"?f.local.name:f.exported.name)}return i},"collectJsonExportMap"),Zr=ie(s=>{const i=[],{program:l}=Qe(s,{plugins:[["typescript",{dts:!0}]],sourceType:"module"}),c=l.body[0].declarations[0].id.typeAnnotation.typeAnnotation.members;for(const f of c)f.key.type==="Identifier"?i.push(f.key.name):f.key.type==="StringLiteral"&&i.push(f.key.value);return i},"collectJsonExports");export{Rr as X,nn as c,Dr as g};
@@ -0,0 +1 @@
1
+ var R=Object.defineProperty;var h=(l,i)=>R(l,"name",{value:i,configurable:!0});import k from"node:path";import w from"node:process";import{findTsConfigSync as B,readTsConfig as F}from"@visulima/tsconfig";var S=Object.defineProperty,q=h((l,i)=>S(l,"name",{value:i,configurable:!0}),"h");let g=!1;const K=q(({banner:l,build:i=!1,cjsDefault:v=!1,compilerOptions:e={},cwd:c=w.cwd(),dtsInput:b=!1,eager:x=!1,emitDtsOnly:O=!1,emitJs:u,exclude:T=null,footer:y,include:E=null,incremental:m=!1,newContext:M=!1,oxc:o,parallel:D=!1,resolve:I=!1,resolver:P="oxc",sideEffects:C=!1,sourcemap:p,tsconfig:t,tsconfigRaw:J={},tsgo:f=!1,tsMacro:n=!1,vue:r=!1})=>{let a;if(t===!0||t==null)try{const d=B(c);t=d.path,a=d.config}catch{t=void 0}else typeof t=="string"?(t=k.resolve(c||w.cwd(),t),a=F(t)):t=void 0;e={...a?.compilerOptions,...e},m||=e.incremental||!!e.tsBuildInfoFile,p??=!!e.declarationMap,e.declarationMap=p;const j={...a,...J,compilerOptions:e};let s=!1;if(f&&(s=f===!0?{}:f),o??=!!(e?.isolatedDeclarations&&!r&&!s&&!n),o===!0&&(o={}),o&&(o.stripInternal??=!!e?.stripInternal,o.sourcemap=!!e.declarationMap),u??=!!(e.checkJs||e.allowJs),s){if(r)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `vue` option. Please disable one of them.");if(n)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `tsMacro` option. Please disable one of them.");if(o)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `oxc` option. Please disable one of them.")}if(o&&r)throw new Error("[@visulima/rollup-plugin-dts] The `oxc` option is not compatible with the `vue` option. Please disable one of them.");if(o&&n)throw new Error("[@visulima/rollup-plugin-dts] The `oxc` option is not compatible with the `tsMacro` option. Please disable one of them.");return s&&!g&&(console.warn("The `tsgo` option is experimental and may change in the future."),g=!0),{banner:l,build:i,cjsDefault:v,cwd:c,dtsInput:b,eager:x,emitDtsOnly:O,emitJs:u,exclude:T,footer:y,include:E,incremental:m,newContext:M,oxc:o,parallel:D,resolve:I,resolver:P,sideEffects:C,sourcemap:p,tsconfig:t,tsconfigRaw:j,tsgo:s,tsMacro:n,vue:r}},"resolveOptions");export{K as resolveOptions};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/rollup-plugin-dts",
3
- "version": "1.0.0-alpha.4",
3
+ "version": "1.0.0-alpha.5",
4
4
  "description": "A Rollup plugin to bundle dts files",
5
5
  "homepage": "https://github.com/visulima/packem/tree/main/packages/rollup-plugin-dts",
6
6
  "bugs": {
@@ -54,22 +54,23 @@
54
54
  "dependencies": {
55
55
  "@babel/generator": "7.29.1",
56
56
  "@babel/helper-validator-identifier": "7.28.5",
57
- "@babel/parser": "7.29.0",
57
+ "@babel/parser": "7.29.2",
58
58
  "@babel/types": "7.29.0",
59
+ "@rollup/pluginutils": "5.3.0",
59
60
  "@visulima/tsconfig": "2.1.3",
60
61
  "ast-kit": "^2.2.0",
61
62
  "birpc": "^4.0.0",
62
63
  "magic-string": "0.30.21",
63
64
  "obug": "2.1.1",
64
65
  "oxc-resolver": "11.19.1",
65
- "oxc-transform": "0.119.0"
66
+ "oxc-transform": "0.121.0"
66
67
  },
67
68
  "peerDependencies": {
68
69
  "@ts-macro/tsc": "0.3.7",
69
70
  "@typescript/native-preview": ">=7.0.0-dev.20250601.1",
70
71
  "rollup": ">=4.0.0",
71
- "typescript": "^5.9.3",
72
- "vue-tsc": "3.2.5"
72
+ "typescript": "^5.0.0 || ^6.0.0-beta",
73
+ "vue-tsc": "3.2.6"
73
74
  },
74
75
  "peerDependenciesMeta": {
75
76
  "@typescript/native-preview": {
@@ -1 +0,0 @@
1
- var xe=Object.defineProperty;var D=(e,n)=>xe(e,"name",{value:n,configurable:!0});import X from"node:path";import{generate as Y}from"@babel/generator";import{isIdentifierName as ge}from"@babel/helper-validator-identifier";import{parse as Z}from"@babel/parser";import f from"@babel/types";import{isTypeOf as C,isDeclarationType as Se,walkAST as V,resolveString as B,isIdentifierOf as ie}from"ast-kit";import{RE_DTS as _,resolveTemplateFn as he,filename_js_to_dts as ee,replaceTemplateName as te,filename_dts_to as ne,RE_DTS_MAP as Ee,filename_to_dts as be}from"../filename.js";var De=Object.defineProperty,S=D((e,n)=>De(e,"name",{value:n,configurable:!0}),"o");const $="__rollup_dts_resolve__:",We=S(({cjsDefault:e,sideEffects:n,sourcemap:g})=>{let r=0;const T=new Map,N=new Map,A=new Map;return{generateBundle(s,o){const d=new Map;for(const i of Object.values(o))if(i.type==="chunk")for(const u of i.moduleIds)d.set(u,i.fileName);const c=new RegExp(`"${$}(.+?)"`,"g");for(const i of Object.values(o))i.type!=="chunk"||!_.test(i.fileName)||i.code.includes($)&&(i.code=i.code.replaceAll(c,(u,E)=>{const a=d.get(E);if(!a)return u;let y=X.posix.relative(X.posix.dirname(i.fileName),a);return y.startsWith(".")||(y=`./${y}`),y=ne(y,"js"),JSON.stringify(y)}));for(const i of Object.values(o))if(Ee.test(i.fileName))if(g){if(i.type==="chunk"||typeof i.source!="string")continue;const u=JSON.parse(i.source);u.sourcesContent=void 0,i.source=JSON.stringify(u)}else delete o[i.fileName]},name:"rollup-plugin-dts:fake-js",outputOptions(s){const{chunkFileNames:o,entryFileNames:d}=s;return(s.format==="cjs"||s.format==="commonjs")&&(s={...s,format:"es"}),{...s,chunkFileNames(c){const i=he(c.isEntry?d||"[name].js":o||"[name]-[hash].js",c);if(c.name.endsWith(".d")){const u=ee(te(i,c.name.slice(0,-2)));if(_.test(u))return u;const E=ee(te(i,c.name));if(_.test(E))return E}return i},sourcemap:s.sourcemap||g}},renderChunk:j,async transform(s,o){if(_.test(o))return O.call(this,s,o)}};async function O(s,o){const d=Object.create(null),c=Z(s,{createParenthesizedExpressions:!0,errorRecovery:!0,plugins:[["typescript",{dts:!0}]],sourceType:"module"}),{comments:i,program:u}=c,E=[];if(i){const m=ae(i);N.set(o,m)}const a=[],y=new Map;for(const[m,t]of u.body.entries()){const v=S(l=>u.body[m]=l,"setStmt");if(Me(t,v,E))continue;const h=t.type==="TSModuleDeclaration"&&t.kind!=="namespace";let b;if(h&&t.id.type==="StringLiteral"){const l=await this.resolve(t.id.value,o);l&&!l.external?b=_.test(l.id)?l.id:be(l.id):t.id.value[0]==="."&&this.warn(`\`declare module ${JSON.stringify(t.id.value)}\` will be kept as-is in the output. Relative module declaration may cause unexpected issues. Found in ${o}.`)}if(h&&o.endsWith(".vue.d.ts")&&s.slice(t.start,t.end).includes("__VLS_"))continue;const k=t.type==="ExportDefaultDeclaration",R=C(t,["ExportNamedDeclaration","ExportDefaultDeclaration"])&&t.declaration,p=R?t.declaration:t,I=R?l=>t.declaration=l:v;if(p.type!=="TSDeclareFunction"&&!Se(p))continue;C(p,["TSEnumDeclaration","ClassDeclaration","FunctionDeclaration","TSDeclareFunction","TSModuleDeclaration","VariableDeclaration"])&&(p.declare=!0);const x=[];if(p.type==="VariableDeclaration")x.push(...p.declarations.map(l=>l.id));else if("id"in p&&p.id){let l=p.id;l.type==="TSQualifiedName"&&(l=W(l)),l=h?f.identifier(`_${P(d,"")}`):l,x.push(l)}else{const l=f.identifier("export_default");x.push(l),p.id=l}const F=pe(p),J=new Set,L=de(p,y,J,d),Q=[...J].filter(l=>x.every(ye=>l!==ye));p!==t&&(p.leadingComments=t.leadingComments);const ue=K({bindings:x,children:Q,decl:p,deps:L,params:F,resolvedModuleId:b}),q=f.numericLiteral(ue),z=f.arrowFunctionExpression(F.map(({name:l})=>f.identifier(l)),f.arrayExpression(L)),H=f.arrayExpression(Q.map(l=>({end:l.end,loc:l.loc,start:l.start,type:"StringLiteral",value:""}))),U=h&&f.callExpression(f.identifier("sideEffect"),[x[0]]),me=Ne(U?[q,z,H,U]:[q,z,H]),G={declarations:[{id:{...x[0],typeAnnotation:null},init:me,type:"VariableDeclarator"},...x.slice(1).map(l=>({id:{...l,typeAnnotation:null},type:"VariableDeclarator"}))],kind:"var",type:"VariableDeclaration"};k?(a.push(f.exportNamedDeclaration(null,[f.exportSpecifier(x[0],f.identifier("default"))])),v(G)):I(G)}return n&&a.push(f.expressionStatement(f.callExpression(f.identifier("sideEffect"),[]))),u.body=[...Array.from(y.values(),({stmt:m})=>m),...u.body,...a],A.set(o,E),Y(c,{comments:!1,sourceFileName:o,sourceMaps:g})}function j(s,o){if(!_.test(o.fileName))return;const d=[];for(const a of o.moduleIds){const y=A.get(a);y&&d.push(...y)}const c=Z(s,{sourceType:"module"}),{program:i}=c;if(i.body=Ce(i.body),i.body=ke(i.body),i.body=i.body.map(a=>{if(je(a)||a.type==="ExpressionStatement")return null;const y=we(a,d,e);if(y||y===!1)return y;if(a.type!=="VariableDeclaration")return a;if(!ve(a))return null;const[m,t,v]=a.declarations[0].init.elements,h=m.value,b=le(h);V(b.decl,{enter(p){p.type!=="CommentBlock"&&delete p.loc}});for(const[p,I]of a.declarations.entries()){const x={...I.id,typeAnnotation:b.bindings[p].typeAnnotation};M(b.bindings[p],x)}for(const[p,I]of v.elements.entries())Object.assign(b.children[p],{loc:I.loc});const k=t.params;for(const[p,I]of k.entries()){const x=I.name;for(const F of b.params[p].typeParams)F.name=x}const R=t.body.elements;for(let p=0;p<b.deps.length;p++){const I=b.deps[p];let x=R[p];x&&x.type==="UnaryExpression"&&x.operator==="void"&&(x={...f.identifier("undefined"),end:x.end,loc:x.loc,start:x.start}),I.replace?I.replace(x):Object.assign(I,x)}return b.decl.type==="TSModuleDeclaration"&&b.resolvedModuleId&&(b.decl.id.value=$+b.resolvedModuleId),Ae(a,b.decl)}).filter(a=>!!a),i.body.length===0)return"export { };";const u=new Set,E=new Set;for(const a of o.moduleIds){const y=N.get(a);y&&(y.forEach(m=>{const t=m.type+m.value;E.has(t)||(E.add(t),u.add(m))}),N.delete(a))}return u.size>0&&(i.body[0].leadingComments||=[],i.body[0].leadingComments.unshift(...u)),Y(c,{comments:!0,sourceFileName:o.fileName,sourceMaps:g})}function P(s,o){return o in s?s[o]++:s[o]=0}function K(s){const o=r++;return T.set(o,s),o}function le(s){return T.get(s)}function pe(s){const o=[];V(s,{leave(c){"typeParameters"in c&&c.typeParameters?.type==="TSTypeParameterDeclaration"&&o.push(...c.typeParameters.params)}});const d=new Map;for(const c of o){const{name:i}=c,u=d.get(i);u?u.push(c):d.set(i,[c])}return Array.from(d.entries(),([c,i])=>({name:c,typeParams:i}))}function ce(s){const o=[];return V(s,{enter(d){d.type==="TSInferType"&&d.typeParameter&&o.push(d.typeParameter.name)}}),o}function de(s,o,d,c){const i=new Set,u=new Set,E=[];let a=new Set;function y(t){return t.type==="Identifier"&&a.has(t.name)}return D(y,"l"),S(y,"isInferred"),V(s,{enter(t){if(t.type==="TSConditionalType"){const v=ce(t.extendsType);E.push(v)}},leave(t,v){if(t.type==="TSConditionalType")E.pop();else if(v?.type==="TSConditionalType"){const h=v.trueType===t;a=new Set((h?E:E.slice(0,-1)).flat())}else a=new Set;if(t.type==="ExportNamedDeclaration")for(const h of t.specifiers)h.type==="ExportSpecifier"&&m(h.local);else if(t.type==="TSInterfaceDeclaration"&&t.extends)for(const h of t.extends||[])m(w(h.expression));else if(t.type==="ClassDeclaration"){if(t.superClass&&m(t.superClass),t.implements)for(const h of t.implements)h.type!=="ClassImplements"&&m(w(h.expression))}else if(C(t,["ObjectMethod","ObjectProperty","ClassProperty","TSPropertySignature","TSDeclareMethod"]))t.computed&&re(t.key)&&m(t.key),"value"in t&&re(t.value)&&m(t.value);else switch(t.type){case"TSImportType":{u.add(t);const h=t.argument,b=t.qualifier,k=fe(t,b,h,o,c);m(k);break}case"TSTypeQuery":{if(u.has(t.exprName))return;if(t.exprName.type==="TSImportType")break;m(w(t.exprName));break}case"TSTypeReference":{m(w(t.typeName));break}}v&&!i.has(t)&&oe(t,v)&&d.add(t)}}),[...i];function m(t){se(t)||y(t)||i.add(t)}D(m,"S")}function fe(s,o,d,c,i){const u=d.value.replaceAll(/\W/g,"_"),E=ge(d.value)?d.value:`${u}${P(i,u)}`;let a=f.identifier(E);if(c.has(d.value)?a=c.get(d.value).local:c.set(d.value,{local:a,stmt:f.importDeclaration([f.importNamespaceSpecifier(a)],d)}),o){const m=W(o);M(m,f.tsQualifiedName(a,{...m})),a=o}let y=s;return s.typeParameters?(M(s,f.tsTypeReference(a,s.typeParameters)),y=a):M(s,a),{...w(a),replace(m){M(y,m)}}}},"createFakeJsPlugin");function oe(e,n){return!!(e.type==="Identifier"||C(n,["TSPropertySignature","TSMethodSignature"])&&n.key===e)}D(oe,"De");S(oe,"isChildSymbol");const Te=/\/\s*<reference\s+(?:path|types)=/,ae=S((e,n=!1)=>e.filter(g=>Te.test(g.value)!==n),"collectReferenceDirectives"),ve=S(e=>f.isVariableDeclaration(e)&&e.declarations.length>0&&f.isVariableDeclarator(e.declarations[0])&&Ie(e.declarations[0].init),"isRuntimeBindingVariableDeclaration"),Ie=S(e=>f.isArrayExpression(e)&&_e(e.elements),"isRuntimeBindingArrayExpression"),Ne=S(e=>f.arrayExpression(e),"runtimeBindingArrayExpression"),_e=S(e=>{const[n,g,r,T]=e;return n?.type==="NumericLiteral"&&g?.type==="ArrowFunctionExpression"&&r?.type==="ArrayExpression"&&(!T||T.type==="CallExpression")},"isRuntimeBindingArrayElements"),se=S(e=>ie(e,"this")||e.type==="ThisExpression"||e.type==="MemberExpression"&&se(e.object),"isThisExpression"),w=S(e=>{if(e.type==="Identifier")return e;const n=w(e.left);return Object.assign(e,f.memberExpression(n,e.right))},"TSEntityNameToRuntime"),W=S(e=>e.type==="Identifier"?e:W(e.left),"getIdFromTSEntityName"),re=S(e=>C(e,["Identifier","MemberExpression"]),"isReferenceId"),je=S(e=>e.type==="ImportDeclaration"&&e.specifiers.length===1&&e.specifiers.every(n=>n.type==="ImportSpecifier"&&n.imported.type==="Identifier"&&["__export","__reExport"].includes(n.local.name)),"isHelperImport"),we=S((e,n,g)=>{if(e.type==="ExportNamedDeclaration"&&!e.declaration&&!e.source&&e.specifiers.length===0&&!e.attributes?.length)return!1;if(C(e,["ImportDeclaration","ExportAllDeclaration","ExportNamedDeclaration"])){if(e.type==="ExportNamedDeclaration"&&n.length>0)for(const r of e.specifiers){const T=B(r.exported);n.includes(T)&&(r.type==="ExportSpecifier"?r.exportKind="type":e.exportKind="type")}if(e.source?.value&&_.test(e.source.value))return e.source.value=ne(e.source.value,"js"),e;if(g&&e.type==="ExportNamedDeclaration"&&!e.source&&e.specifiers.length===1&&e.specifiers[0].type==="ExportSpecifier"&&B(e.specifiers[0].exported)==="default")return{expression:e.specifiers[0].local,type:"TSExportAssignment"}}},"patchImportExport"),Ce=S(e=>{const n=new Set;for(const[r,T]of e.entries()){const N=g(T);if(!N)continue;const[A,O]=N;O.properties.length!==0&&(e[r]={body:{body:[{declaration:null,source:null,specifiers:O.properties.filter(j=>j.type==="ObjectProperty").map(j=>{const P=j.value.body,K=j.key;return f.exportSpecifier(P,K)}),type:"ExportNamedDeclaration"}],type:"TSModuleBlock"},declare:!0,id:A,kind:"namespace",type:"TSModuleDeclaration"})}return e.filter(r=>!n.has(r));function g(r){if(r.type!=="VariableDeclaration"||r.declarations.length!==1||r.declarations[0].id.type!=="Identifier"||r.declarations[0].init?.type!=="CallExpression"||r.declarations[0].init.callee.type!=="Identifier"||r.declarations[0].init.callee.name!=="__export"||r.declarations[0].init.arguments.length!==1||r.declarations[0].init.arguments[0].type!=="ObjectExpression")return!1;const T=r.declarations[0].id,N=r.declarations[0].init.arguments[0];return[T,N]}},"patchTsNamespace"),ke=S(e=>{const n=new Map;for(const[g,r]of e.entries())if(r.type==="ImportDeclaration"&&r.specifiers.length===1&&r.specifiers[0].type==="ImportSpecifier"&&r.specifiers[0].local.type==="Identifier"&&r.specifiers[0].local.name.endsWith("_exports"))n.set(r.specifiers[0].local.name,r.specifiers[0].local.name);else if(r.type==="ExpressionStatement"&&r.expression.type==="CallExpression"&&ie(r.expression.callee,"__reExport")){const T=r.expression.arguments;n.set(T[0].name,T[1].name)}else r.type==="VariableDeclaration"&&r.declarations.length===1&&r.declarations[0].init?.type==="MemberExpression"&&r.declarations[0].init.object.type==="Identifier"&&n.has(r.declarations[0].init.object.name)?e[g]={id:{name:r.declarations[0].id.name,type:"Identifier"},type:"TSTypeAliasDeclaration",typeAnnotation:{type:"TSTypeReference",typeName:{left:{name:n.get(r.declarations[0].init.object.name),type:"Identifier"},right:{name:r.declarations[0].init.property.name,type:"Identifier"},type:"TSQualifiedName"}}}:r.type==="ExportNamedDeclaration"&&r.specifiers.length===1&&r.specifiers[0].type==="ExportSpecifier"&&r.specifiers[0].local.type==="Identifier"&&n.has(r.specifiers[0].local.name)&&(r.specifiers[0].local.name=n.get(r.specifiers[0].local.name));return e},"patchReExport"),Me=S((e,n,g)=>{if(e.type==="ImportDeclaration"||e.type==="ExportNamedDeclaration"&&!e.declaration){for(const r of e.specifiers)("exportKind"in r&&r.exportKind==="type"||"exportKind"in e&&e.exportKind==="type")&&g.push(B(r.exported)),r.type==="ImportSpecifier"?r.importKind="value":r.type==="ExportSpecifier"&&(r.exportKind="value");return e.type==="ImportDeclaration"?e.importKind="value":e.type==="ExportNamedDeclaration"&&(e.exportKind="value"),!0}return e.type==="ExportAllDeclaration"?(e.exportKind="value",!0):e.type==="TSImportEqualsDeclaration"?(e.moduleReference.type==="TSExternalModuleReference"&&n({source:e.moduleReference.expression,specifiers:[{local:e.id,type:"ImportDefaultSpecifier"}],type:"ImportDeclaration"}),!0):e.type==="TSExportAssignment"&&e.expression.type==="Identifier"?(n({specifiers:[{exported:{name:"default",type:"Identifier"},local:e.expression,type:"ExportSpecifier"}],type:"ExportNamedDeclaration"}),!0):e.type==="ExportDefaultDeclaration"&&e.declaration.type==="Identifier"?(n({specifiers:[{exported:f.identifier("default"),local:e.declaration,type:"ExportSpecifier"}],type:"ExportNamedDeclaration"}),!0):!1},"rewriteImportExport"),M=S((e,n)=>{for(const g of Object.keys(e))delete e[g];return Object.assign(e,n),e},"overwriteNode"),Ae=S((e,n)=>{n.leadingComments||=[];const g=e.leadingComments?.filter(r=>r.value.startsWith("#"));return g&&n.leadingComments.unshift(...g),n.leadingComments=ae(n.leadingComments,!0),n},"inheritNodeComments");export{We as default};
@@ -1 +0,0 @@
1
- import"node:child_process";import"node:fs";import"node:fs/promises";import"node:path";import"@babel/parser";import"obug";import"oxc-transform";import"../filename.js";import{c as f}from"./generate-CxhgFvNH.js";export{f as createGeneratePlugin};
@@ -1,9 +0,0 @@
1
- var ur=Object.defineProperty;var te=(s,i)=>ur(s,"name",{value:i,configurable:!0});import{spawn as pr,fork as fr}from"node:child_process";import{existsSync as ve,readFileSync as dr}from"node:fs";import{mkdtemp as gr,readFile as Te,rm as mr}from"node:fs/promises";import P from"node:path";import{parse as Xe}from"@babel/parser";import{createDebug as Me}from"obug";import{transformSync as hr,isolatedDeclarationSync as xr}from"oxc-transform";import{RE_DTS as z,RE_NODE_MODULES as de,RE_JS as re,filename_to_dts as Ze,RE_JSON as Le,RE_TS as Ue,RE_VUE as je,resolveTemplateFn as yr,replaceTemplateName as be,RE_DTS_MAP as qe}from"../filename.js";import{createRequire as $r}from"node:module";import{tmpdir as wr}from"node:os";var vr=Object.defineProperty,a=te((s,i)=>vr(s,"name",{value:i,configurable:!0}),"s");let Ge=a(()=>{var s=(()=>{var i=Object.defineProperty,l=Object.getOwnPropertyDescriptor,c=Object.getOwnPropertyNames,f=Object.prototype.hasOwnProperty,v=a((e,t)=>{for(var r in t)i(e,r,{get:t[r],enumerable:!0})},"ne"),_=a((e,t,r,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of c(t))!f.call(e,n)&&n!==r&&i(e,n,{get:a(()=>t[n],"get"),enumerable:!(o=l(t,n))||o.enumerable});return e},"ae"),j=a(e=>_(i({},"__esModule",{value:!0}),e),"oe"),N={};v(N,{zeptomatch:a(()=>Je,"zeptomatch")});var Z=a(e=>{const t=new Set,r=[e];for(let o=0;o<r.length;o++){const n=r[o];if(t.has(n))continue;t.add(n);const{children:u}=n;if(u?.length)for(let d=0,y=u.length;d<y;d++)r.push(u[d])}return Array.from(t)},"M"),L=a(e=>{let t="";const r=Z(e);for(let o=0,n=r.length;o<n;o++){const u=r[o];if(!u.regex)continue;const d=u.regex.flags;if(t||(t=d),t!==d)throw new Error(`Inconsistent RegExp flags used: "${t}" and "${d}"`)}return t},"se"),ie=a((e,t,r)=>{const o=r.get(e);if(o!==void 0)return o;const n=e.partial??t;let u="";if(e.regex&&(u+=n?"(?:$|":"",u+=e.regex.source),e.children?.length){const d=me(e.children.map(y=>ie(y,t,r)).filter(Boolean));if(d?.length){const y=e.children.some(Y=>!Y.regex||!(Y.partial??t)),b=d.length>1||n&&(!u.length||y);u+=b?n?"(?:$|":"(?:":"",u+=d.join("|"),u+=b?")":""}}return e.regex&&(u+=n?")":""),r.set(e,u),u},"O"),X=a((e,t)=>{const r=new Map,o=Z(e);for(let n=o.length-1;n>=0;n--){const u=ie(o[n],t,r);if(!(n>0))return u}return""},"ie"),me=a(e=>Array.from(new Set(e)),"ue"),K=a((e,t,r)=>K.compile(e,r).test(t),"R");K.compile=(e,t)=>{const r=t?.partial??!1,o=X(e,r),n=L(e);return new RegExp(`^(?:${o})$`,n)};var S=K,ae=a((e,t)=>{const r=S.compile(e,t),o=`${r.source.slice(0,-1)}[\\\\/]?$`,n=r.flags;return new RegExp(o,n)},"le"),U=ae,le=a(e=>{const t=e.map(o=>o.source).join("|")||"$^",r=e[0]?.flags;return new RegExp(t,r)},"ve"),H=le,B=a(e=>Array.isArray(e),"j"),A=a(e=>typeof e=="function","_"),ce=a(e=>e.length===0,"he"),x=(()=>{const{toString:e}=Function.prototype,t=/(?:^\(\s*(?:[^,.()]|\.(?!\.\.))*\s*\)\s*=>|^\s*[a-zA-Z$_][a-zA-Z0-9$_]*\s*=>)/;return r=>(r.length===0||r.length===1)&&t.test(e.call(r))})(),m=a(e=>typeof e=="number","de"),h=a(e=>typeof e=="object"&&e!==null,"xe"),g=a(e=>e instanceof RegExp,"me"),$=(()=>{const e=/\\\(|\((?!\?(?::|=|!|<=|<!))/;return t=>e.test(t.source)})(),E=(()=>{const e=/^[a-zA-Z0-9_-]+$/;return t=>e.test(t.source)&&!t.flags.includes("i")})(),M=a(e=>typeof e=="string","A"),k=a(e=>e===void 0,"f"),I=a(e=>{const t=new Map;return r=>{const o=t.get(r);if(o!==void 0)return o;const n=e(r);return t.set(r,n),n}},"ye"),D=a((e,t,r={})=>{const o={cache:{},input:e,index:0,indexBacktrackMax:0,options:r,output:[]},n=F(t)(o),u=Math.max(o.index,o.indexBacktrackMax);if(n&&o.index===e.length)return o.output;throw new Error(`Failed to parse at index ${u}`)},"I"),p=a((e,t)=>B(e)?ue(e,t):M(e)?_e(e,t):pe(e,t),"i"),ue=a((e,t)=>{const r={};for(const o of e){if(o.length!==1)throw new Error(`Invalid character: "${o}"`);const n=o.charCodeAt(0);r[n]=!0}return o=>{const n=o.input;let u=o.index,d=u;for(;d<n.length&&n.charCodeAt(d)in r;)d+=1;if(d>u){if(!k(t)&&!o.options.silent){const y=n.slice(u,d),b=A(t)?t(y,n,`${u}`):t;k(b)||o.output.push(b)}o.index=d}return!0}},"we"),pe=a((e,t)=>{if(E(e))return _e(e.source,t);{const r=e.source,o=e.flags.replace(/y|$/,"y"),n=new RegExp(r,o);return $(e)&&A(t)&&!x(t)?tt(n,t):rt(n,t)}},"$e"),tt=a((e,t)=>r=>{const o=r.index,n=r.input;e.lastIndex=o;const u=e.exec(n);if(u){const d=e.lastIndex;if(!r.options.silent){const y=t(...u,n,`${o}`);k(y)||r.output.push(y)}return r.index=d,!0}else return!1},"Ee"),rt=a((e,t)=>r=>{const o=r.index,n=r.input;if(e.lastIndex=o,e.test(n)){const u=e.lastIndex;if(!k(t)&&!r.options.silent){const d=A(t)?t(n.slice(o,u),n,`${o}`):t;k(d)||r.output.push(d)}return r.index=u,!0}else return!1},"Ce"),_e=a((e,t)=>r=>{const o=r.index,n=r.input;if(n.startsWith(e,o)){if(!k(t)&&!r.options.silent){const u=A(t)?t(e,n,`${o}`):t;k(u)||r.output.push(u)}return r.index+=e.length,!0}else return!1},"F"),he=a((e,t,r,o)=>{const n=F(e),u=t>1;return ye(xe(Se(d=>{let y=0;for(;y<r;){const b=d.index;if(!n(d)||(y+=1,d.index===b))break}return y>=t},u),o))},"k"),Ae=a((e,t)=>he(e,0,1,t),"L"),fe=a((e,t)=>he(e,0,1/0,t),"$"),nt=a((e,t)=>he(e,1,1/0,t),"Re"),q=a((e,t)=>{const r=e.map(F);return ye(xe(Se(o=>{for(let n=0,u=r.length;n<u;n++)if(!r[n](o))return!1;return!0}),t))},"x"),O=a((e,t)=>{const r=e.map(F);return ye(xe(o=>{for(let n=0,u=r.length;n<u;n++)if(r[n](o))return!0;return!1},t))},"p"),Se=a((e,t=!0,r=!1)=>{const o=F(e);return t?n=>{const u=n.index,d=n.output.length,y=o(n);return!y&&!r&&(n.indexBacktrackMax=Math.max(n.indexBacktrackMax,n.index)),(!y||r)&&(n.index=u,n.output.length!==d&&(n.output.length=d)),y}:o},"q"),xe=a((e,t)=>{const r=F(e);return t?o=>{if(o.options.silent)return r(o);const n=o.output.length;if(r(o)){const u=o.output.splice(n,1/0),d=t(u);return k(d)||o.output.push(d),!0}else return!1}:r},"B"),ye=(()=>{let e=0;return t=>{const r=F(t),o=e+=1;return n=>{var u;if(n.options.memoization===!1)return r(n);const d=n.index,y=(u=n.cache)[o]||(u[o]={indexMax:-1,queue:[]}),b=y.queue;if(d<=y.indexMax){const ee=y.store||(y.store=new Map);if(b.length){for(let V=0,ar=b.length;V<ar;V+=2){const lr=b[V*2],cr=b[V*2+1];ee.set(lr,cr)}b.length=0}const R=ee.get(d);if(R===!1)return!1;if(m(R))return n.index=R,!0;if(R)return n.index=R.index,R.output?.length&&n.output.push(...R.output),!0}const Y=n.output.length,ir=r(n);if(y.indexMax=Math.max(y.indexMax,d),ir){const ee=n.index,R=n.output.length;if(R>Y){const V=n.output.slice(Y,R);b.push(d,{index:ee,output:V})}else b.push(d,ee);return!0}else return b.push(d,!1),!1}}})(),Oe=a(e=>{let t;return r=>(t||(t=F(e())),t(r))},"G"),F=I(e=>{if(A(e))return ce(e)?Oe(e):e;if(M(e)||g(e))return p(e);if(B(e))return q(e);if(h(e))return O(Object.values(e));throw new Error("Invalid rule")}),J=a(e=>e,"d"),ot=a(e=>typeof e=="string","ke"),st=a(e=>{const t=new WeakMap,r=new WeakMap;return(o,n)=>{const u=n?.partial?r:t,d=u.get(o);if(d!==void 0)return d;const y=e(o,n);return u.set(o,y),y}},"Be"),it=a(e=>{const t={},r={};return(o,n)=>{const u=n?.partial?r:t;return u[o]??(u[o]=e(o,n))}},"Pe"),at=p(/\\./,J),lt=p(/./,J),ct=p(/\*\*\*+/,"*"),ut=p(/([^/{[(!])\*\*/,(e,t)=>`${t}*`),pt=p(/(^|.)\*\*(?=[^*/)\]}])/,(e,t)=>`${t}*`),ft=fe(O([at,ct,ut,pt,lt])),dt=ft,gt=a(e=>D(e,dt,{memoization:!1}).join(""),"Ie"),mt=gt,Re="abcdefghijklmnopqrstuvwxyz",ht=a(e=>{let t="";for(;e>0;){const r=(e-1)%26;t=Re[r]+t,e=Math.floor((e-1)/26)}return t},"Le"),Ie=a(e=>{let t=0;for(let r=0,o=e.length;r<o;r++)t=t*26+Re.indexOf(e[r])+1;return t},"V"),$e=a((e,t)=>{if(t<e)return $e(t,e);const r=[];for(;e<=t;)r.push(e++);return r},"b"),xt=a((e,t,r)=>$e(e,t).map(o=>String(o).padStart(r,"0")),"qe"),ze=a((e,t)=>$e(Ie(e),Ie(t)).map(ht),"W"),w=a(e=>({partial:!1,regex:new RegExp(e,"s"),children:[]}),"c"),Q=a(e=>({children:e}),"y"),G=(()=>{const e=a((t,r,o)=>{if(o.has(t))return;o.add(t);const{children:n}=t;if(!n.length)n.push(r);else for(let u=0,d=n.length;u<d;u++)e(n[u],r,o)},"e");return t=>{if(!t.length)return Q([]);for(let r=t.length-1;r>=1;r--){const o=new Set,n=t[r-1],u=t[r];e(n,u,o)}return t[0]}})(),W=a(()=>({regex:new RegExp("[\\\\/]","s"),children:[]}),"g"),yt=p(/\\./,w),$t=p(/[$.*+?^(){}[\]\|]/,e=>w(`\\${e}`)),wt=p(/[\\\/]/,W),vt=p(/[^$.*+?^(){}[\]\|\\\/]+/,w),jt=p(/^(?:!!)*!(.*)$/,(e,t)=>w(`(?!^${Je.compile(t).source}$).*?`)),bt=p(/^(!!)+/),Et=O([jt,bt]),Mt=p(/\/(\*\*\/)+/,()=>Q([G([W(),w(".+?"),W()]),W()])),kt=p(/^(\*\*\/)+/,()=>Q([w("^"),G([w(".*?"),W()])])),_t=p(/\/(\*\*)$/,()=>Q([G([W(),w(".*?")]),w("$")])),At=p(/\*\*/,()=>w(".*?")),Ce=O([Mt,kt,_t,At]),St=p(/\*\/(?!\*\*\/|\*$)/,()=>G([w("[^\\\\/]*?"),W()])),Ot=p(/\*/,()=>w("[^\\\\/]*")),Pe=O([St,Ot]),Ne=p("?",()=>w("[^\\\\/]")),Rt=p("[",J),It=p("]",J),zt=p(/[!^]/,"^\\\\/"),Ct=p(/[a-z]-[a-z]|[0-9]-[0-9]/i,J),Pt=p(/\\./,J),Nt=p(/[$.*+?^(){}[\|]/,e=>`\\${e}`),Dt=p(/[\\\/]/,"\\\\/"),Ft=p(/[^$.*+?^(){}[\]\|\\\/]+/,J),Wt=O([Pt,Nt,Dt,Ct,Ft]),De=q([Rt,Ae(zt),fe(Wt),It],e=>w(e.join(""))),Bt=p("{","(?:"),Jt=p("}",")"),Tt=p(/(\d+)\.\.(\d+)/,(e,t,r)=>xt(+t,+r,Math.min(t.length,r.length)).join("|")),Zt=p(/([a-z]+)\.\.([a-z]+)/,(e,t,r)=>ze(t,r).join("|")),Lt=p(/([A-Z]+)\.\.([A-Z]+)/,(e,t,r)=>ze(t.toLowerCase(),r.toLowerCase()).join("|").toUpperCase()),Ut=O([Tt,Zt,Lt]),Fe=q([Bt,Ut,Jt],e=>w(e.join(""))),qt=p("{"),Gt=p("}"),Vt=p(","),Xt=p(/\\./,w),Kt=p(/[$.*+?^(){[\]\|]/,e=>w(`\\${e}`)),Ht=p(/[\\\/]/,W),Qt=p(/[^$.*+?^(){}[\]\|\\\/,]+/,w),Yt=Oe(()=>Be),er=p("",()=>w("(?:)")),tr=nt(O([Ce,Pe,Ne,De,Fe,Yt,Xt,Kt,Ht,Qt]),G),We=O([tr,er]),Be=q([qt,Ae(q([We,fe(q([Vt,We]))])),Gt],Q),rr=fe(O([Et,Ce,Pe,Ne,De,Fe,Be,yt,$t,wt,vt]),G),nr=rr,or=a(e=>D(e,nr,{memoization:!1})[0],"kr"),sr=or,we=a((e,t,r)=>we.compile(e,r).test(t),"N");we.compile=(()=>{const e=it((r,o)=>U(sr(mt(r)),o)),t=st((r,o)=>H(r.map(n=>e(n,o))));return(r,o)=>ot(r)?e(r,o):t(r,o)})();var Je=we;return j(N)})();return s.default||s},"_lazyMatch"),Ee;const jr=a((s,i)=>(Ee||(Ee=Ge(),Ge=null),Ee(s,i)),"zeptomatch"),br=/^[A-Z]:\//i,T=a((s="")=>s&&s.replaceAll("\\","/").replace(br,i=>i.toUpperCase()),"normalizeWindowsPath"),Er=/^[/\\]{2}/,Mr=/^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Z]:[/\\]/i,Ke=/^[A-Z]:$/i,Ve=/^\/([A-Z]:)?$/i,kr=/.(\.[^./]+)$/,_r=/^[/\\]|^[a-z]:[/\\]/i,Ar=a(()=>typeof process.cwd=="function"?process.cwd().replaceAll("\\","/"):"/","cwd"),He=a((s,i)=>{let l="",c=0,f=-1,v=0,_;for(let j=0;j<=s.length;++j){if(j<s.length)_=s[j];else{if(_==="/")break;_="/"}if(_==="/"){if(!(f===j-1||v===1))if(v===2){if(l.length<2||c!==2||!l.endsWith(".")||l.at(-2)!=="."){if(l.length>2){const N=l.lastIndexOf("/");N===-1?(l="",c=0):(l=l.slice(0,N),c=l.length-1-l.lastIndexOf("/")),f=j,v=0;continue}else if(l.length>0){l="",c=0,f=j,v=0;continue}}i&&(l+=l.length>0?"/..":"..",c=2)}else l.length>0?l+=`/${s.slice(f+1,j)}`:l=s.slice(f+1,j),c=j-f-1;f=j,v=0}else _==="."&&v!==-1?++v:v=-1}return l},"normalizeString"),se=a(s=>Mr.test(s),"isAbsolute"),Qe=a(function(s){if(s.length===0)return".";s=T(s);const i=Er.exec(s),l=se(s),c=s.at(-1)==="/";return s=He(s,!l),s.length===0?l?"/":c?"./":".":(c&&(s+="/"),Ke.test(s)&&(s+="/"),i?l?`//${s}`:`//./${s}`:l&&!se(s)?`/${s}`:s)},"normalize");a((...s)=>{let i="";for(const l of s)if(l)if(i.length>0){const c=i[i.length-1]==="/",f=l[0]==="/";c&&f?i+=l.slice(1):i+=c||f?l:`/${l}`}else i+=l;return Qe(i)},"join");const ge=a(function(...s){s=s.map(c=>T(c));let i="",l=!1;for(let c=s.length-1;c>=-1&&!l;c--){const f=c>=0?s[c]:Ar();!f||f.length===0||(i=`${f}/${i}`,l=se(f))}return i=He(i,!l),l&&!se(i)?`/${i}`:i.length>0?i:"."},"resolve");a(function(s){return T(s)},"toNamespacedPath");const Sr=a(function(s){return kr.exec(T(s))?.[1]??""},"extname");a(function(s,i){const l=ge(s).replace(Ve,"$1").split("/"),c=ge(i).replace(Ve,"$1").split("/");if(c[0][1]===":"&&l[0][1]===":"&&l[0]!==c[0])return c.join("/");const f=[...l];for(const v of f){if(c[0]!==v)break;l.shift(),c.shift()}return[...l.map(()=>".."),...c].join("/")},"relative");const Or=a(s=>{const i=T(s).replace(/\/$/,"").split("/").slice(0,-1);return i.length===1&&Ke.test(i[0])&&(i[0]+="/"),i.join("/")||(se(s)?"/":".")},"dirname");a(function(s){const i=[s.root,s.dir,s.base??s.name+s.ext].filter(Boolean);return T(s.root?ge(...i):i.join("/"))},"format");const Rr=a((s,i)=>{const l=T(s).split("/").pop();return i&&l.endsWith(i)?l.slice(0,-i.length):l},"basename");a(function(s){const i=_r.exec(s)?.[0]?.replaceAll("\\","/")??"",l=Rr(s),c=Sr(l);return{base:l,dir:Or(s),ext:c,name:l.slice(0,l.length-c.length),root:i}},"parse");a((s,i)=>jr(i,Qe(s)),"matchesGlob");var Ir=Object.defineProperty,Ye=te((s,i)=>Ir(s,"name",{value:i,configurable:!0}),"r");const zr=Me("rollup-plugin-dts:tsc-context"),et=Ye(()=>({files:new Map,programs:[],projects:new Map}),"createContext"),Cr=Ye((s,i)=>{i=ge(i).replaceAll("\\","/"),zr(`invalidating context file: ${i}`),s.files.delete(i),s.programs=s.programs.filter(l=>!l.getSourceFiles().some(c=>c.fileName===i)),s.projects.clear()},"invalidateContextFile"),Pr=et();var Nr=Object.defineProperty,ke=te((s,i)=>Nr(s,"name",{value:i,configurable:!0}),"i");const ne=Me("rollup-plugin-dts:tsgo"),Dr=ke((...s)=>new Promise((i,l)=>{const c=pr(...s);c.on("close",()=>i()),c.on("error",f=>l(f))}),"spawnAsync"),Fr=ke(()=>{const s=$r(import.meta.url),i=s.resolve("@typescript/native-preview/package.json"),l=P.dirname(i),c=s(P.join(l,"lib","getExePath.js"));return(typeof c=="function"?c:c.default)()},"getTsgoPathFromNodeModules"),Wr=ke(async(s,i,l,c)=>{ne("[tsgo] rootDir",s);let f;c?(f=c,ne("[tsgo] using custom path",f)):(f=Fr(),ne("[tsgo] using tsgo from node_modules",f));const v=await gr(P.join(wr(),"rollup-plugin-dts-"));ne("[tsgo] tsgoDist",v);const _=["--noEmit","false","--declaration","--emitDeclarationOnly",...i?["-p",i]:[],"--outDir",v,"--rootDir",s,"--noCheck",...l?["--declarationMap"]:[]];return ne("[tsgo] args %o",_),await Dr(f,_,{stdio:"inherit"}),v},"runTsgo");var Br=Object.defineProperty,oe=te((s,i)=>Br(s,"name",{value:i,configurable:!0}),"y");const C=Me("rollup-plugin-dts:generate"),Jr=import.meta.WORKER_URL??"./tsc/worker.js",tn=oe(({build:s,cwd:i,eager:l,emitDtsOnly:c,emitJs:f,incremental:v,newContext:_,oxc:j,parallel:N,sourcemap:Z,tsconfig:L,tsconfigRaw:ie,tsgo:X,tsMacro:me,vue:K})=>{const S=new Map,ae=new Map;let U,le,H,B,A;const ce=L?P.dirname(L):i;return{async buildEnd(){U?.kill(),!C.enabled&&A&&await mr(A,{force:!0,recursive:!0}).catch(()=>{}),A=void 0,_&&(B=void 0)},async buildStart(x){if(X?A=await Wr(ce,L,Z,X.path):j||(N?(U=fr(new URL(Jr,import.meta.url),{stdio:"inherit"}),le=(await import("birpc")).createBirpc({},{on:oe(m=>U.on("message",m),"on"),post:oe(m=>U.send(m),"post")})):(H=await import("../packem_chunks/index.js"),_&&(B=et()))),!Array.isArray(x.input))for(const[m,h]of Object.entries(x.input)){C("resolving input alias %s -> %s",m,h);let g=await this.resolve(h);h.startsWith("./")||(g||=await this.resolve(`./${h}`));const $=g?.id||h;C("resolved input alias %s -> %s",h,$),ae.set($,m)}},generateBundle(x,m){for(const h of Object.keys(m)){const g=m[h];if(g){if(g.type==="asset"&&qe.test(h)&&typeof g.source=="string"){const $=JSON.parse(g.source);$.names=[],delete $.sourcesContent,g.source=JSON.stringify($)}c&&g.type==="chunk"&&!z.test(h)&&!qe.test(h)&&delete m[h]}}},load:{filter:{id:{exclude:[de],include:[z]}},async handler(x){if(!S.has(x))return;const{code:m,id:h}=S.get(x);let g,$;if(C("generate dts %s from %s",x,h),X){if(je.test(h))throw new Error("tsgo does not support Vue files.");const E=P.resolve(A,P.relative(ce,Ze(h)));if(ve(E)){if(g=await Te(E,"utf8"),Z){const M=`${E}.map`;ve(M)&&($=JSON.parse(await Te(M,"utf8")))}}else throw C("[tsgo]",E,"is missing"),new Error(`tsgo did not generate dts file for ${h}, please check your tsconfig.`)}else if(j&&!je.test(h)){const E=xr(h,m,j);if(E.errors.length>0){const[M]=E.errors;return this.error({frame:M?.codeframe||void 0,message:M?.codeframe?`${M.message}
2
- ${M.codeframe}`:M?.message??"Unknown error"})}g=E.code,E.map&&($=E.map,$.sourcesContent=void 0,$.names=[])}else{const E=l?void 0:[...S.values()].filter(I=>I.isEntry).map(I=>I.id),M={build:s,context:B,cwd:i,entries:E,id:h,incremental:v,sourcemap:Z,tsconfig:L,tsconfigRaw:ie,tsMacro:me,vue:K};let k;if(k=N?await le.tscEmit(M):H.tscEmit(M),k.error)return this.error(k.error);if(g=k.code,$=k.map,g&&Le.test(h))if(g.includes("declare const _exports")){if(g.includes("declare const _exports: {")&&!g.includes(`
3
- }[];`)){const I=Zr(g);let D=0;g+=I.map(p=>{const ue=`_${p.replaceAll(/[^\w$]/g,"_")}${D++}`,pe=JSON.stringify(p);return`declare let ${ue}: typeof _exports[${pe}]
4
- export { ${ue} as ${pe} }`}).join(`
5
- `)}}else{const I=Tr(g);g+=`
6
- declare namespace __json_default_export {
7
- export { ${Array.from(I.entries(),([D,p])=>D===p?D:`${p} as ${D}`).join(", ")} }
8
- }
9
- export { __json_default_export as default }`}}return{code:g||"",map:$}}},name:"rollup-plugin-dts:generate",outputOptions(x){return{...x,entryFileNames(m){const{entryFileNames:h}=x,g=yr(h||"[name].js",m);if(m.name.endsWith(".d")){if(z.test(g))return be(g,m.name.slice(0,-2));if(re.test(g))return g.replace(re,".$1ts")}else if(c){if(m.facadeModuleId&&z.test(m.facadeModuleId)){if(z.test(g))return be(g,m.name);if(re.test(g))return g.replace(re,".$1ts")}return be("[name].js",m.name)}return g}}},async resolveId(x,m){if(S.has(x))return C("resolve dts id %s",x),{id:x};if(!m&&z.test(x)&&!de.test(x)){const h=P.isAbsolute(x)?x:P.resolve(i,x),g=h.replace(z,".$1ts");if(!S.has(h)&&ve(g)){const $=dr(g,"utf8");S.set(h,{code:$,id:g,isEntry:!0}),C("populated dtsMap from source for cached re-resolution: %s",h)}return S.has(h)?(C("resolve dts id %s (from cache re-resolution)",h),{id:h}):null}if(m&&Ue.test(m)&&(x.startsWith("./")||x.startsWith("../"))&&!P.extname(x))for(const h of[".ts",".tsx",".mts",".cts"]){const g=await this.resolve(x+h,m,{skipSelf:!0});if(g)return g}return null},shouldTransformCachedModule({id:x}){return z.test(x)&&!de.test(x)},transform:{handler(x,m){if(!(z.test(m)||de.test(m))){if(!re.test(m)||f){const h=!!this.getModuleInfo(m)?.isEntry,g=Ze(m);if(S.set(g,{code:x,id:m,isEntry:h}),C("register dts source: %s",m),h){const $=ae.get(m);this.emitFile({id:g,name:$?`${$}.d`:void 0,type:"chunk"})}}return c?Le.test(m)?"{}":"export { }":Ue.test(m)||je.test(m)?hr(m,x,{}).code:null}},order:"pre"},watchChange(x){H&&Cr(B||Pr,x)}}},"createGeneratePlugin"),Tr=oe(s=>{const i=new Map,{program:l}=Xe(s,{errorRecovery:!0,plugins:[["typescript",{dts:!0}]],sourceType:"module"});for(const c of l.body)if(c.type==="ExportNamedDeclaration"){if(c.declaration)if(c.declaration.type==="VariableDeclaration")for(const f of c.declaration.declarations)f.id.type==="Identifier"&&i.set(f.id.name,f.id.name);else c.declaration.type==="TSModuleDeclaration"&&c.declaration.id.type==="Identifier"&&i.set(c.declaration.id.name,c.declaration.id.name);else if(c.specifiers.length>0)for(const f of c.specifiers)f.type==="ExportSpecifier"&&f.exported.type==="Identifier"&&i.set(f.exported.name,f.local.type==="Identifier"?f.local.name:f.exported.name)}return i},"collectJsonExportMap"),Zr=oe(s=>{const i=[],{program:l}=Xe(s,{plugins:[["typescript",{dts:!0}]],sourceType:"module"}),c=l.body[0].declarations[0].id.typeAnnotation.typeAnnotation.members;for(const f of c)f.key.type==="Identifier"?i.push(f.key.name):f.key.type==="StringLiteral"&&i.push(f.key.value);return i},"collectJsonExports");export{Or as X,tn as c,Pr as g};
@@ -1 +0,0 @@
1
- var C=Object.defineProperty;var d=(i,l)=>C(i,"name",{value:l,configurable:!0});import j from"node:path";import w from"node:process";import{findTsConfigSync as R,readTsConfig as k}from"@visulima/tsconfig";var B=Object.defineProperty,F=d((i,l)=>B(i,"name",{value:l,configurable:!0}),"m");let g=!1;const G=F(({banner:i,build:l=!1,cjsDefault:v=!1,compilerOptions:e={},cwd:c=w.cwd(),dtsInput:b=!1,eager:x=!1,emitDtsOnly:O=!1,emitJs:u,footer:T,incremental:m=!1,newContext:y=!1,oxc:o,parallel:E=!1,resolve:M=!1,resolver:I="oxc",sideEffects:P=!1,sourcemap:p,tsconfig:t,tsconfigRaw:D={},tsgo:f=!1,tsMacro:n=!1,vue:r=!1})=>{let a;if(t===!0||t==null)try{const h=R(c);t=h.path,a=h.config}catch{t=void 0}else typeof t=="string"?(t=j.resolve(c||w.cwd(),t),a=k(t)):t=void 0;e={...a?.compilerOptions,...e},m||=e.incremental||!!e.tsBuildInfoFile,p??=!!e.declarationMap,e.declarationMap=p;const J={...a,...D,compilerOptions:e};let s=!1;if(f&&(s=f===!0?{}:f),o??=!!(e?.isolatedDeclarations&&!r&&!s&&!n),o===!0&&(o={}),o&&(o.stripInternal??=!!e?.stripInternal,o.sourcemap=!!e.declarationMap),u??=!!(e.checkJs||e.allowJs),s){if(r)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `vue` option. Please disable one of them.");if(n)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `tsMacro` option. Please disable one of them.");if(o)throw new Error("[@visulima/rollup-plugin-dts] The `tsgo` option is not compatible with the `oxc` option. Please disable one of them.")}if(o&&r)throw new Error("[@visulima/rollup-plugin-dts] The `oxc` option is not compatible with the `vue` option. Please disable one of them.");if(o&&n)throw new Error("[@visulima/rollup-plugin-dts] The `oxc` option is not compatible with the `tsMacro` option. Please disable one of them.");return s&&!g&&(console.warn("The `tsgo` option is experimental and may change in the future."),g=!0),{banner:i,build:l,cjsDefault:v,cwd:c,dtsInput:b,eager:x,emitDtsOnly:O,emitJs:u,footer:T,incremental:m,newContext:y,oxc:o,parallel:E,resolve:M,resolver:I,sideEffects:P,sourcemap:p,tsconfig:t,tsconfigRaw:J,tsgo:s,tsMacro:n,vue:r}},"resolveOptions");export{G as resolveOptions};