config.d.mts 549 B

1234567891011121314
  1. import { F as VERSION, r as defineConfig, t as ConfigExport } from "./shared/define-config-DhJZwTRw.mjs";
  2. //#region src/utils/load-config.d.ts
  3. /**
  4. * Load config from a file in a way that Rolldown does.
  5. *
  6. * @param configPath The path to the config file. If empty, it will look for `rolldown.config` with supported extensions in the current working directory.
  7. * @returns The loaded config export
  8. *
  9. * @category Config
  10. */
  11. declare function loadConfig(configPath: string): Promise<ConfigExport>;
  12. //#endregion
  13. export { VERSION, defineConfig, loadConfig };