15 lines
589 B
TypeScript
Executable File
15 lines
589 B
TypeScript
Executable File
import "./shared/binding-BohGL_65.mjs";
|
|
import { F as VERSION, r as defineConfig, t as ConfigExport } from "./shared/define-config-cG45vHwf.mjs";
|
|
|
|
//#region src/utils/load-config.d.ts
|
|
/**
|
|
* Load config from a file in a way that Rolldown does.
|
|
*
|
|
* @param configPath The path to the config file. If empty, it will look for `rolldown.config` with supported extensions in the current working directory.
|
|
* @returns The loaded config export
|
|
*
|
|
* @category Config
|
|
*/
|
|
declare function loadConfig(configPath: string): Promise<ConfigExport>;
|
|
//#endregion
|
|
export { VERSION, defineConfig, loadConfig }; |