You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
708 B
10 lines
708 B
import type { ConfigEnv, ResolvedConfig, UserConfig } from 'vite';
|
|
import type { RollupError } from 'rollup';
|
|
import type { CompilerError } from '@vue/compiler-sfc';
|
|
import { codeFrameColumns } from '@babel/code-frame';
|
|
export declare function withSourcemap(config: ResolvedConfig | UserConfig): boolean;
|
|
export declare function isInHybridNVue(config: UserConfig | ResolvedConfig): boolean;
|
|
export declare function isSsr(command: ConfigEnv['command'], config: UserConfig | ResolvedConfig): boolean;
|
|
export declare function createRollupError(plugin: string, id: string, error: CompilerError | SyntaxError, source?: string): RollupError;
|
|
export declare const generateCodeFrameColumns: typeof codeFrameColumns;
|