rollup.d.ts 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. export const VERSION: string;
  2. export interface RollupError extends RollupLogProps {
  3. parserError?: Error;
  4. stack?: string;
  5. watchFiles?: string[];
  6. }
  7. export interface RollupWarning extends RollupLogProps {
  8. chunkName?: string;
  9. cycle?: string[];
  10. exportName?: string;
  11. exporter?: string;
  12. guess?: string;
  13. importer?: string;
  14. missing?: string;
  15. modules?: string[];
  16. names?: string[];
  17. reexporter?: string;
  18. source?: string;
  19. sources?: string[];
  20. }
  21. export interface RollupLogProps {
  22. code?: string;
  23. frame?: string;
  24. hook?: string;
  25. id?: string;
  26. loc?: {
  27. column: number;
  28. file?: string;
  29. line: number;
  30. };
  31. message: string;
  32. name?: string;
  33. plugin?: string;
  34. pluginCode?: string;
  35. pos?: number;
  36. url?: string;
  37. }
  38. export type SourceMapSegment =
  39. | [number]
  40. | [number, number, number, number]
  41. | [number, number, number, number, number];
  42. export interface ExistingDecodedSourceMap {
  43. file?: string;
  44. mappings: SourceMapSegment[][];
  45. names: string[];
  46. sourceRoot?: string;
  47. sources: string[];
  48. sourcesContent?: string[];
  49. version: number;
  50. }
  51. export interface ExistingRawSourceMap {
  52. file?: string;
  53. mappings: string;
  54. names: string[];
  55. sourceRoot?: string;
  56. sources: string[];
  57. sourcesContent?: string[];
  58. version: number;
  59. }
  60. export type DecodedSourceMapOrMissing =
  61. | {
  62. mappings?: never;
  63. missing: true;
  64. plugin: string;
  65. }
  66. | ExistingDecodedSourceMap;
  67. export interface SourceMap {
  68. file: string;
  69. mappings: string;
  70. names: string[];
  71. sources: string[];
  72. sourcesContent: string[];
  73. version: number;
  74. toString(): string;
  75. toUrl(): string;
  76. }
  77. export type SourceMapInput = ExistingRawSourceMap | string | null | { mappings: '' };
  78. type PartialNull<T> = {
  79. [P in keyof T]: T[P] | null;
  80. };
  81. interface ModuleOptions {
  82. meta: CustomPluginOptions;
  83. moduleSideEffects: boolean | 'no-treeshake';
  84. syntheticNamedExports: boolean | string;
  85. }
  86. export interface SourceDescription extends Partial<PartialNull<ModuleOptions>> {
  87. ast?: AcornNode;
  88. code: string;
  89. map?: SourceMapInput;
  90. }
  91. export interface TransformModuleJSON {
  92. ast?: AcornNode;
  93. code: string;
  94. // note if plugins use new this.cache to opt-out auto transform cache
  95. customTransformCache: boolean;
  96. originalCode: string;
  97. originalSourcemap: ExistingDecodedSourceMap | null;
  98. resolvedIds?: ResolvedIdMap;
  99. sourcemapChain: DecodedSourceMapOrMissing[];
  100. transformDependencies: string[];
  101. }
  102. export interface ModuleJSON extends TransformModuleJSON, ModuleOptions {
  103. ast: AcornNode;
  104. dependencies: string[];
  105. id: string;
  106. transformFiles: EmittedFile[] | undefined;
  107. }
  108. export interface PluginCache {
  109. delete(id: string): boolean;
  110. get<T = any>(id: string): T;
  111. has(id: string): boolean;
  112. set<T = any>(id: string, value: T): void;
  113. }
  114. export interface MinimalPluginContext {
  115. meta: PluginContextMeta;
  116. }
  117. export interface EmittedAsset {
  118. fileName?: string;
  119. name?: string;
  120. source?: string | Uint8Array;
  121. type: 'asset';
  122. }
  123. export interface EmittedChunk {
  124. fileName?: string;
  125. id: string;
  126. implicitlyLoadedAfterOneOf?: string[];
  127. importer?: string;
  128. name?: string;
  129. preserveSignature?: PreserveEntrySignaturesOption;
  130. type: 'chunk';
  131. }
  132. export type EmittedFile = EmittedAsset | EmittedChunk;
  133. export type EmitAsset = (name: string, source?: string | Uint8Array) => string;
  134. export type EmitChunk = (id: string, options?: { name?: string }) => string;
  135. export type EmitFile = (emittedFile: EmittedFile) => string;
  136. interface ModuleInfo {
  137. ast: AcornNode | null;
  138. code: string | null;
  139. dynamicImporters: readonly string[];
  140. dynamicallyImportedIds: readonly string[];
  141. hasModuleSideEffects: boolean | 'no-treeshake';
  142. id: string;
  143. implicitlyLoadedAfterOneOf: readonly string[];
  144. implicitlyLoadedBefore: readonly string[];
  145. importedIds: readonly string[];
  146. importers: readonly string[];
  147. isEntry: boolean;
  148. isExternal: boolean;
  149. isIncluded: boolean | null;
  150. meta: CustomPluginOptions;
  151. syntheticNamedExports: boolean | string;
  152. }
  153. export type GetModuleInfo = (moduleId: string) => ModuleInfo | null;
  154. export interface CustomPluginOptions {
  155. [plugin: string]: any;
  156. }
  157. export interface PluginContext extends MinimalPluginContext {
  158. addWatchFile: (id: string) => void;
  159. cache: PluginCache;
  160. /** @deprecated Use `this.emitFile` instead */
  161. emitAsset: EmitAsset;
  162. /** @deprecated Use `this.emitFile` instead */
  163. emitChunk: EmitChunk;
  164. emitFile: EmitFile;
  165. error: (err: RollupError | string, pos?: number | { column: number; line: number }) => never;
  166. /** @deprecated Use `this.getFileName` instead */
  167. getAssetFileName: (assetReferenceId: string) => string;
  168. /** @deprecated Use `this.getFileName` instead */
  169. getChunkFileName: (chunkReferenceId: string) => string;
  170. getFileName: (fileReferenceId: string) => string;
  171. getModuleIds: () => IterableIterator<string>;
  172. getModuleInfo: GetModuleInfo;
  173. getWatchFiles: () => string[];
  174. /** @deprecated Use `this.resolve` instead */
  175. isExternal: IsExternal;
  176. load: (options: { id: string } & Partial<PartialNull<ModuleOptions>>) => Promise<ModuleInfo>;
  177. /** @deprecated Use `this.getModuleIds` instead */
  178. moduleIds: IterableIterator<string>;
  179. parse: (input: string, options?: any) => AcornNode;
  180. resolve: (
  181. source: string,
  182. importer?: string,
  183. options?: { custom?: CustomPluginOptions; isEntry?: boolean; skipSelf?: boolean }
  184. ) => Promise<ResolvedId | null>;
  185. /** @deprecated Use `this.resolve` instead */
  186. resolveId: (source: string, importer?: string) => Promise<string | null>;
  187. setAssetSource: (assetReferenceId: string, source: string | Uint8Array) => void;
  188. warn: (warning: RollupWarning | string, pos?: number | { column: number; line: number }) => void;
  189. }
  190. export interface PluginContextMeta {
  191. rollupVersion: string;
  192. watchMode: boolean;
  193. }
  194. export interface ResolvedId extends ModuleOptions {
  195. external: boolean | 'absolute';
  196. id: string;
  197. }
  198. export interface ResolvedIdMap {
  199. [key: string]: ResolvedId;
  200. }
  201. interface PartialResolvedId extends Partial<PartialNull<ModuleOptions>> {
  202. external?: boolean | 'absolute' | 'relative';
  203. id: string;
  204. }
  205. export type ResolveIdResult = string | false | null | undefined | PartialResolvedId;
  206. export type ResolveIdHook = (
  207. this: PluginContext,
  208. source: string,
  209. importer: string | undefined,
  210. options: { custom?: CustomPluginOptions; isEntry: boolean }
  211. ) => Promise<ResolveIdResult> | ResolveIdResult;
  212. export type ShouldTransformCachedModuleHook = (
  213. this: PluginContext,
  214. options: {
  215. ast: AcornNode;
  216. code: string;
  217. id: string;
  218. meta: CustomPluginOptions;
  219. moduleSideEffects: boolean | 'no-treeshake';
  220. syntheticNamedExports: boolean | string;
  221. }
  222. ) => Promise<boolean> | boolean;
  223. export type IsExternal = (
  224. source: string,
  225. importer: string | undefined,
  226. isResolved: boolean
  227. ) => boolean;
  228. export type IsPureModule = (id: string) => boolean | null | undefined;
  229. export type HasModuleSideEffects = (id: string, external: boolean) => boolean;
  230. type LoadResult = SourceDescription | string | null | undefined;
  231. export type LoadHook = (this: PluginContext, id: string) => Promise<LoadResult> | LoadResult;
  232. export interface TransformPluginContext extends PluginContext {
  233. getCombinedSourcemap: () => SourceMap;
  234. }
  235. export type TransformResult = string | null | undefined | Partial<SourceDescription>;
  236. export type TransformHook = (
  237. this: TransformPluginContext,
  238. code: string,
  239. id: string
  240. ) => Promise<TransformResult> | TransformResult;
  241. export type ModuleParsedHook = (this: PluginContext, info: ModuleInfo) => Promise<void> | void;
  242. export type RenderChunkHook = (
  243. this: PluginContext,
  244. code: string,
  245. chunk: RenderedChunk,
  246. options: NormalizedOutputOptions
  247. ) =>
  248. | Promise<{ code: string; map?: SourceMapInput } | null>
  249. | { code: string; map?: SourceMapInput }
  250. | string
  251. | null
  252. | undefined;
  253. export type ResolveDynamicImportHook = (
  254. this: PluginContext,
  255. specifier: string | AcornNode,
  256. importer: string
  257. ) => Promise<ResolveIdResult> | ResolveIdResult;
  258. export type ResolveImportMetaHook = (
  259. this: PluginContext,
  260. prop: string | null,
  261. options: { chunkId: string; format: InternalModuleFormat; moduleId: string }
  262. ) => string | null | undefined;
  263. export type ResolveAssetUrlHook = (
  264. this: PluginContext,
  265. options: {
  266. assetFileName: string;
  267. chunkId: string;
  268. format: InternalModuleFormat;
  269. moduleId: string;
  270. relativeAssetPath: string;
  271. }
  272. ) => string | null | undefined;
  273. export type ResolveFileUrlHook = (
  274. this: PluginContext,
  275. options: {
  276. assetReferenceId: string | null;
  277. chunkId: string;
  278. chunkReferenceId: string | null;
  279. fileName: string;
  280. format: InternalModuleFormat;
  281. moduleId: string;
  282. referenceId: string;
  283. relativePath: string;
  284. }
  285. ) => string | null | undefined;
  286. export type AddonHookFunction = (this: PluginContext) => string | Promise<string>;
  287. export type AddonHook = string | AddonHookFunction;
  288. export type ChangeEvent = 'create' | 'update' | 'delete';
  289. export type WatchChangeHook = (
  290. this: PluginContext,
  291. id: string,
  292. change: { event: ChangeEvent }
  293. ) => void;
  294. /**
  295. * use this type for plugin annotation
  296. * @example
  297. * ```ts
  298. * interface Options {
  299. * ...
  300. * }
  301. * const myPlugin: PluginImpl<Options> = (options = {}) => { ... }
  302. * ```
  303. */
  304. // eslint-disable-next-line @typescript-eslint/ban-types
  305. export type PluginImpl<O extends object = object> = (options?: O) => Plugin;
  306. export interface OutputBundle {
  307. [fileName: string]: OutputAsset | OutputChunk;
  308. }
  309. export interface FilePlaceholder {
  310. type: 'placeholder';
  311. }
  312. export interface OutputBundleWithPlaceholders {
  313. [fileName: string]: OutputAsset | OutputChunk | FilePlaceholder;
  314. }
  315. export interface PluginHooks extends OutputPluginHooks {
  316. buildEnd: (this: PluginContext, err?: Error) => Promise<void> | void;
  317. buildStart: (this: PluginContext, options: NormalizedInputOptions) => Promise<void> | void;
  318. closeBundle: (this: PluginContext) => Promise<void> | void;
  319. closeWatcher: (this: PluginContext) => void;
  320. load: LoadHook;
  321. moduleParsed: ModuleParsedHook;
  322. options: (
  323. this: MinimalPluginContext,
  324. options: InputOptions
  325. ) => Promise<InputOptions | null | undefined> | InputOptions | null | undefined;
  326. resolveDynamicImport: ResolveDynamicImportHook;
  327. resolveId: ResolveIdHook;
  328. shouldTransformCachedModule: ShouldTransformCachedModuleHook;
  329. transform: TransformHook;
  330. watchChange: WatchChangeHook;
  331. }
  332. interface OutputPluginHooks {
  333. augmentChunkHash: (this: PluginContext, chunk: PreRenderedChunk) => string | void;
  334. generateBundle: (
  335. this: PluginContext,
  336. options: NormalizedOutputOptions,
  337. bundle: OutputBundle,
  338. isWrite: boolean
  339. ) => void | Promise<void>;
  340. outputOptions: (this: PluginContext, options: OutputOptions) => OutputOptions | null | undefined;
  341. renderChunk: RenderChunkHook;
  342. renderDynamicImport: (
  343. this: PluginContext,
  344. options: {
  345. customResolution: string | null;
  346. format: InternalModuleFormat;
  347. moduleId: string;
  348. targetModuleId: string | null;
  349. }
  350. ) => { left: string; right: string } | null | undefined;
  351. renderError: (this: PluginContext, err?: Error) => Promise<void> | void;
  352. renderStart: (
  353. this: PluginContext,
  354. outputOptions: NormalizedOutputOptions,
  355. inputOptions: NormalizedInputOptions
  356. ) => Promise<void> | void;
  357. /** @deprecated Use `resolveFileUrl` instead */
  358. resolveAssetUrl: ResolveAssetUrlHook;
  359. resolveFileUrl: ResolveFileUrlHook;
  360. resolveImportMeta: ResolveImportMetaHook;
  361. writeBundle: (
  362. this: PluginContext,
  363. options: NormalizedOutputOptions,
  364. bundle: OutputBundle
  365. ) => void | Promise<void>;
  366. }
  367. export type AsyncPluginHooks =
  368. | 'options'
  369. | 'buildEnd'
  370. | 'buildStart'
  371. | 'generateBundle'
  372. | 'load'
  373. | 'moduleParsed'
  374. | 'renderChunk'
  375. | 'renderError'
  376. | 'renderStart'
  377. | 'resolveDynamicImport'
  378. | 'resolveId'
  379. | 'shouldTransformCachedModule'
  380. | 'transform'
  381. | 'writeBundle'
  382. | 'closeBundle';
  383. export type PluginValueHooks = 'banner' | 'footer' | 'intro' | 'outro';
  384. export type SyncPluginHooks = Exclude<keyof PluginHooks, AsyncPluginHooks>;
  385. export type FirstPluginHooks =
  386. | 'load'
  387. | 'renderDynamicImport'
  388. | 'resolveAssetUrl'
  389. | 'resolveDynamicImport'
  390. | 'resolveFileUrl'
  391. | 'resolveId'
  392. | 'resolveImportMeta'
  393. | 'shouldTransformCachedModule';
  394. export type SequentialPluginHooks =
  395. | 'augmentChunkHash'
  396. | 'closeWatcher'
  397. | 'generateBundle'
  398. | 'options'
  399. | 'outputOptions'
  400. | 'renderChunk'
  401. | 'transform'
  402. | 'watchChange';
  403. export type ParallelPluginHooks =
  404. | 'banner'
  405. | 'buildEnd'
  406. | 'buildStart'
  407. | 'footer'
  408. | 'intro'
  409. | 'moduleParsed'
  410. | 'outro'
  411. | 'renderError'
  412. | 'renderStart'
  413. | 'writeBundle'
  414. | 'closeBundle';
  415. interface OutputPluginValueHooks {
  416. banner: AddonHook;
  417. cacheKey: string;
  418. footer: AddonHook;
  419. intro: AddonHook;
  420. outro: AddonHook;
  421. }
  422. export interface Plugin extends Partial<PluginHooks>, Partial<OutputPluginValueHooks> {
  423. // for inter-plugin communication
  424. api?: any;
  425. name: string;
  426. }
  427. export interface OutputPlugin extends Partial<OutputPluginHooks>, Partial<OutputPluginValueHooks> {
  428. name: string;
  429. }
  430. type TreeshakingPreset = 'smallest' | 'safest' | 'recommended';
  431. export interface NormalizedTreeshakingOptions {
  432. annotations: boolean;
  433. correctVarValueBeforeDeclaration: boolean;
  434. moduleSideEffects: HasModuleSideEffects;
  435. propertyReadSideEffects: boolean | 'always';
  436. tryCatchDeoptimization: boolean;
  437. unknownGlobalSideEffects: boolean;
  438. }
  439. export interface TreeshakingOptions
  440. extends Partial<Omit<NormalizedTreeshakingOptions, 'moduleSideEffects'>> {
  441. moduleSideEffects?: ModuleSideEffectsOption;
  442. preset?: TreeshakingPreset;
  443. /** @deprecated Use `moduleSideEffects` instead */
  444. pureExternalModules?: PureModulesOption;
  445. }
  446. interface GetManualChunkApi {
  447. getModuleIds: () => IterableIterator<string>;
  448. getModuleInfo: GetModuleInfo;
  449. }
  450. export type GetManualChunk = (id: string, api: GetManualChunkApi) => string | null | undefined;
  451. export type ExternalOption =
  452. | (string | RegExp)[]
  453. | string
  454. | RegExp
  455. | ((
  456. source: string,
  457. importer: string | undefined,
  458. isResolved: boolean
  459. ) => boolean | null | undefined);
  460. export type PureModulesOption = boolean | string[] | IsPureModule;
  461. export type GlobalsOption = { [name: string]: string } | ((name: string) => string);
  462. export type InputOption = string | string[] | { [entryAlias: string]: string };
  463. export type ManualChunksOption = { [chunkAlias: string]: string[] } | GetManualChunk;
  464. export type ModuleSideEffectsOption = boolean | 'no-external' | string[] | HasModuleSideEffects;
  465. export type PreserveEntrySignaturesOption = false | 'strict' | 'allow-extension' | 'exports-only';
  466. export type SourcemapPathTransformOption = (
  467. relativeSourcePath: string,
  468. sourcemapPath: string
  469. ) => string;
  470. export interface InputOptions {
  471. acorn?: Record<string, unknown>;
  472. acornInjectPlugins?: (() => unknown)[] | (() => unknown);
  473. cache?: false | RollupCache;
  474. context?: string;
  475. experimentalCacheExpiry?: number;
  476. external?: ExternalOption;
  477. /** @deprecated Use the "inlineDynamicImports" output option instead. */
  478. inlineDynamicImports?: boolean;
  479. input?: InputOption;
  480. makeAbsoluteExternalsRelative?: boolean | 'ifRelativeSource';
  481. /** @deprecated Use the "manualChunks" output option instead. */
  482. manualChunks?: ManualChunksOption;
  483. maxParallelFileReads?: number;
  484. moduleContext?: ((id: string) => string | null | undefined) | { [id: string]: string };
  485. onwarn?: WarningHandlerWithDefault;
  486. perf?: boolean;
  487. plugins?: (Plugin | null | false | undefined)[];
  488. preserveEntrySignatures?: PreserveEntrySignaturesOption;
  489. /** @deprecated Use the "preserveModules" output option instead. */
  490. preserveModules?: boolean;
  491. preserveSymlinks?: boolean;
  492. shimMissingExports?: boolean;
  493. strictDeprecations?: boolean;
  494. treeshake?: boolean | TreeshakingPreset | TreeshakingOptions;
  495. watch?: WatcherOptions | false;
  496. }
  497. export interface NormalizedInputOptions {
  498. acorn: Record<string, unknown>;
  499. acornInjectPlugins: (() => unknown)[];
  500. cache: false | undefined | RollupCache;
  501. context: string;
  502. experimentalCacheExpiry: number;
  503. external: IsExternal;
  504. /** @deprecated Use the "inlineDynamicImports" output option instead. */
  505. inlineDynamicImports: boolean | undefined;
  506. input: string[] | { [entryAlias: string]: string };
  507. makeAbsoluteExternalsRelative: boolean | 'ifRelativeSource';
  508. /** @deprecated Use the "manualChunks" output option instead. */
  509. manualChunks: ManualChunksOption | undefined;
  510. maxParallelFileReads: number;
  511. moduleContext: (id: string) => string;
  512. onwarn: WarningHandler;
  513. perf: boolean;
  514. plugins: Plugin[];
  515. preserveEntrySignatures: PreserveEntrySignaturesOption;
  516. /** @deprecated Use the "preserveModules" output option instead. */
  517. preserveModules: boolean | undefined;
  518. preserveSymlinks: boolean;
  519. shimMissingExports: boolean;
  520. strictDeprecations: boolean;
  521. treeshake: false | NormalizedTreeshakingOptions;
  522. }
  523. export type InternalModuleFormat = 'amd' | 'cjs' | 'es' | 'iife' | 'system' | 'umd';
  524. export type ModuleFormat = InternalModuleFormat | 'commonjs' | 'esm' | 'module' | 'systemjs';
  525. type GeneratedCodePreset = 'es5' | 'es2015';
  526. interface NormalizedGeneratedCodeOptions {
  527. arrowFunctions: boolean;
  528. constBindings: boolean;
  529. objectShorthand: boolean;
  530. reservedNamesAsProps: boolean;
  531. }
  532. interface GeneratedCodeOptions extends Partial<NormalizedGeneratedCodeOptions> {
  533. preset?: GeneratedCodePreset;
  534. }
  535. export type OptionsPaths = Record<string, string> | ((id: string) => string);
  536. export type InteropType = boolean | 'auto' | 'esModule' | 'default' | 'defaultOnly';
  537. export type GetInterop = (id: string | null) => InteropType;
  538. export type AmdOptions = (
  539. | {
  540. autoId?: false;
  541. id: string;
  542. }
  543. | {
  544. autoId: true;
  545. basePath?: string;
  546. id?: undefined;
  547. }
  548. | {
  549. autoId?: false;
  550. id?: undefined;
  551. }
  552. ) & {
  553. define?: string;
  554. };
  555. export type NormalizedAmdOptions = (
  556. | {
  557. autoId: false;
  558. id?: string;
  559. }
  560. | {
  561. autoId: true;
  562. basePath: string;
  563. }
  564. ) & {
  565. define: string;
  566. };
  567. export interface OutputOptions {
  568. amd?: AmdOptions;
  569. assetFileNames?: string | ((chunkInfo: PreRenderedAsset) => string);
  570. banner?: string | (() => string | Promise<string>);
  571. chunkFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
  572. compact?: boolean;
  573. // only required for bundle.write
  574. dir?: string;
  575. /** @deprecated Use the "renderDynamicImport" plugin hook instead. */
  576. dynamicImportFunction?: string;
  577. entryFileNames?: string | ((chunkInfo: PreRenderedChunk) => string);
  578. esModule?: boolean;
  579. exports?: 'default' | 'named' | 'none' | 'auto';
  580. extend?: boolean;
  581. externalLiveBindings?: boolean;
  582. // only required for bundle.write
  583. file?: string;
  584. footer?: string | (() => string | Promise<string>);
  585. format?: ModuleFormat;
  586. freeze?: boolean;
  587. generatedCode?: GeneratedCodePreset | GeneratedCodeOptions;
  588. globals?: GlobalsOption;
  589. hoistTransitiveImports?: boolean;
  590. indent?: string | boolean;
  591. inlineDynamicImports?: boolean;
  592. interop?: InteropType | GetInterop;
  593. intro?: string | (() => string | Promise<string>);
  594. manualChunks?: ManualChunksOption;
  595. minifyInternalExports?: boolean;
  596. name?: string;
  597. namespaceToStringTag?: boolean;
  598. noConflict?: boolean;
  599. outro?: string | (() => string | Promise<string>);
  600. paths?: OptionsPaths;
  601. plugins?: (OutputPlugin | null | false | undefined)[];
  602. /** @deprecated Use the "generatedCode.constBindings" instead. */
  603. preferConst?: boolean;
  604. preserveModules?: boolean;
  605. preserveModulesRoot?: string;
  606. sanitizeFileName?: boolean | ((fileName: string) => string);
  607. sourcemap?: boolean | 'inline' | 'hidden';
  608. sourcemapExcludeSources?: boolean;
  609. sourcemapFile?: string;
  610. sourcemapPathTransform?: SourcemapPathTransformOption;
  611. strict?: boolean;
  612. systemNullSetters?: boolean;
  613. validate?: boolean;
  614. }
  615. export interface NormalizedOutputOptions {
  616. amd: NormalizedAmdOptions;
  617. assetFileNames: string | ((chunkInfo: PreRenderedAsset) => string);
  618. banner: () => string | Promise<string>;
  619. chunkFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
  620. compact: boolean;
  621. dir: string | undefined;
  622. /** @deprecated Use the "renderDynamicImport" plugin hook instead. */
  623. dynamicImportFunction: string | undefined;
  624. entryFileNames: string | ((chunkInfo: PreRenderedChunk) => string);
  625. esModule: boolean;
  626. exports: 'default' | 'named' | 'none' | 'auto';
  627. extend: boolean;
  628. externalLiveBindings: boolean;
  629. file: string | undefined;
  630. footer: () => string | Promise<string>;
  631. format: InternalModuleFormat;
  632. freeze: boolean;
  633. generatedCode: NormalizedGeneratedCodeOptions;
  634. globals: GlobalsOption;
  635. hoistTransitiveImports: boolean;
  636. indent: true | string;
  637. inlineDynamicImports: boolean;
  638. interop: GetInterop;
  639. intro: () => string | Promise<string>;
  640. manualChunks: ManualChunksOption;
  641. minifyInternalExports: boolean;
  642. name: string | undefined;
  643. namespaceToStringTag: boolean;
  644. noConflict: boolean;
  645. outro: () => string | Promise<string>;
  646. paths: OptionsPaths;
  647. plugins: OutputPlugin[];
  648. /** @deprecated Use the "renderDynamicImport" plugin hook instead. */
  649. preferConst: boolean;
  650. preserveModules: boolean;
  651. preserveModulesRoot: string | undefined;
  652. sanitizeFileName: (fileName: string) => string;
  653. sourcemap: boolean | 'inline' | 'hidden';
  654. sourcemapExcludeSources: boolean;
  655. sourcemapFile: string | undefined;
  656. sourcemapPathTransform: SourcemapPathTransformOption | undefined;
  657. strict: boolean;
  658. systemNullSetters: boolean;
  659. validate: boolean;
  660. }
  661. export type WarningHandlerWithDefault = (
  662. warning: RollupWarning,
  663. defaultHandler: WarningHandler
  664. ) => void;
  665. export type WarningHandler = (warning: RollupWarning) => void;
  666. export interface SerializedTimings {
  667. [label: string]: [number, number, number];
  668. }
  669. export interface PreRenderedAsset {
  670. name: string | undefined;
  671. source: string | Uint8Array;
  672. type: 'asset';
  673. }
  674. export interface OutputAsset extends PreRenderedAsset {
  675. fileName: string;
  676. /** @deprecated Accessing "isAsset" on files in the bundle is deprecated, please use "type === \'asset\'" instead */
  677. isAsset: true;
  678. }
  679. export interface RenderedModule {
  680. code: string | null;
  681. originalLength: number;
  682. removedExports: string[];
  683. renderedExports: string[];
  684. renderedLength: number;
  685. }
  686. export interface PreRenderedChunk {
  687. exports: string[];
  688. facadeModuleId: string | null;
  689. isDynamicEntry: boolean;
  690. isEntry: boolean;
  691. isImplicitEntry: boolean;
  692. modules: {
  693. [id: string]: RenderedModule;
  694. };
  695. name: string;
  696. type: 'chunk';
  697. }
  698. export interface RenderedChunk extends PreRenderedChunk {
  699. code?: string;
  700. dynamicImports: string[];
  701. fileName: string;
  702. implicitlyLoadedBefore: string[];
  703. importedBindings: {
  704. [imported: string]: string[];
  705. };
  706. imports: string[];
  707. map?: SourceMap;
  708. referencedFiles: string[];
  709. }
  710. export interface OutputChunk extends RenderedChunk {
  711. code: string;
  712. }
  713. export interface SerializablePluginCache {
  714. [key: string]: [number, any];
  715. }
  716. export interface RollupCache {
  717. modules: ModuleJSON[];
  718. plugins?: Record<string, SerializablePluginCache>;
  719. }
  720. export interface RollupOutput {
  721. output: [OutputChunk, ...(OutputChunk | OutputAsset)[]];
  722. }
  723. export interface RollupBuild {
  724. cache: RollupCache | undefined;
  725. close: () => Promise<void>;
  726. closed: boolean;
  727. generate: (outputOptions: OutputOptions) => Promise<RollupOutput>;
  728. getTimings?: () => SerializedTimings;
  729. watchFiles: string[];
  730. write: (options: OutputOptions) => Promise<RollupOutput>;
  731. }
  732. export interface RollupOptions extends InputOptions {
  733. // This is included for compatibility with config files but ignored by rollup.rollup
  734. output?: OutputOptions | OutputOptions[];
  735. }
  736. export interface MergedRollupOptions extends InputOptions {
  737. output: OutputOptions[];
  738. }
  739. export function rollup(options: RollupOptions): Promise<RollupBuild>;
  740. export interface ChokidarOptions {
  741. alwaysStat?: boolean;
  742. atomic?: boolean | number;
  743. awaitWriteFinish?:
  744. | {
  745. pollInterval?: number;
  746. stabilityThreshold?: number;
  747. }
  748. | boolean;
  749. binaryInterval?: number;
  750. cwd?: string;
  751. depth?: number;
  752. disableGlobbing?: boolean;
  753. followSymlinks?: boolean;
  754. ignoreInitial?: boolean;
  755. ignorePermissionErrors?: boolean;
  756. ignored?: any;
  757. interval?: number;
  758. persistent?: boolean;
  759. useFsEvents?: boolean;
  760. usePolling?: boolean;
  761. }
  762. export interface WatcherOptions {
  763. buildDelay?: number;
  764. chokidar?: ChokidarOptions;
  765. clearScreen?: boolean;
  766. exclude?: string | RegExp | (string | RegExp)[];
  767. include?: string | RegExp | (string | RegExp)[];
  768. skipWrite?: boolean;
  769. }
  770. export interface RollupWatchOptions extends InputOptions {
  771. output?: OutputOptions | OutputOptions[];
  772. watch?: WatcherOptions | false;
  773. }
  774. interface TypedEventEmitter<T extends { [event: string]: (...args: any) => any }> {
  775. addListener<K extends keyof T>(event: K, listener: T[K]): this;
  776. emit<K extends keyof T>(event: K, ...args: Parameters<T[K]>): boolean;
  777. eventNames(): Array<keyof T>;
  778. getMaxListeners(): number;
  779. listenerCount(type: keyof T): number;
  780. listeners<K extends keyof T>(event: K): Array<T[K]>;
  781. off<K extends keyof T>(event: K, listener: T[K]): this;
  782. on<K extends keyof T>(event: K, listener: T[K]): this;
  783. once<K extends keyof T>(event: K, listener: T[K]): this;
  784. prependListener<K extends keyof T>(event: K, listener: T[K]): this;
  785. prependOnceListener<K extends keyof T>(event: K, listener: T[K]): this;
  786. rawListeners<K extends keyof T>(event: K): Array<T[K]>;
  787. removeAllListeners<K extends keyof T>(event?: K): this;
  788. removeListener<K extends keyof T>(event: K, listener: T[K]): this;
  789. setMaxListeners(n: number): this;
  790. }
  791. export type RollupWatcherEvent =
  792. | { code: 'START' }
  793. | { code: 'BUNDLE_START'; input?: InputOption; output: readonly string[] }
  794. | {
  795. code: 'BUNDLE_END';
  796. duration: number;
  797. input?: InputOption;
  798. output: readonly string[];
  799. result: RollupBuild;
  800. }
  801. | { code: 'END' }
  802. | { code: 'ERROR'; error: RollupError; result: RollupBuild | null };
  803. export interface RollupWatcher
  804. extends TypedEventEmitter<{
  805. change: (id: string, change: { event: ChangeEvent }) => void;
  806. close: () => void;
  807. event: (event: RollupWatcherEvent) => void;
  808. restart: () => void;
  809. }> {
  810. close(): void;
  811. }
  812. export function watch(config: RollupWatchOptions | RollupWatchOptions[]): RollupWatcher;
  813. interface AcornNode {
  814. end: number;
  815. start: number;
  816. type: string;
  817. }
  818. export function defineConfig(options: RollupOptions): RollupOptions;
  819. export function defineConfig(options: RollupOptions[]): RollupOptions[];