siegel
Version:
Web application development ecosystem
35 lines (34 loc) • 798 B
TypeScript
import type { Filenames } from './client_build/types';
import type { Config } from './types';
declare const getConfig: (userConfig?: Config) => {
runMode: {
isServer: true;
isBuild: true;
isProd: false;
};
publicDir: string;
server: {
host: string;
port: number;
serveCompressionsPriority: string[];
};
build: {
input: {
html: string;
js: string;
};
output: {
publicPath: string;
target: string;
filenames: Filenames;
logging: {
colors: true;
modules: false;
children: false;
};
};
eslint: false;
aliases: {};
};
};
export default getConfig;