UNPKG

extension-develop

Version:
7 lines (6 loc) 563 B
import { Configuration } from '@rspack/core'; import { BrowserConfig, DevOptions } from './config-types'; export declare function loadCustomWebpackConfig(projectPath: string): Promise<(config: Configuration) => Configuration>; export declare function loadCommandConfig(projectPath: string, command: 'dev' | 'build' | 'start' | 'preview'): Promise<{}>; export declare function loadBrowserConfig(projectPath: string, browser?: DevOptions['browser']): Promise<BrowserConfig>; export declare function isUsingExperimentalConfig(projectPath: string): Promise<boolean>;