UNPKG

vite

Version:

Native-ESM powered web dev build tool

10 lines (9 loc) 397 B
import type { ResolvedConfig } from '..'; export declare const importsRE: RegExp; export declare function scanImports(config: ResolvedConfig): Promise<{ deps: Record<string, string>; missing: Record<string, string>; }>; export declare const scriptRE: RegExp; export declare const commentRE: RegExp; export declare function shouldExternalizeDep(resolvedId: string, rawId: string): boolean;