UNPKG

extension-develop

Version:
15 lines (14 loc) 478 B
import { type Configuration } from '@rspack/core'; import { DevOptions } from '../develop-lib/config-types'; import { type ProjectStructure } from '../develop-lib/get-project-path'; export default function webpackConfig(projectStructure: ProjectStructure, devOptions: DevOptions & { preferences?: Record<string, unknown>; browserFlags?: string[]; } & { output: { clean: boolean; path: string; }; } & { instanceId?: string; }): Configuration;