import type { Config, DevServer } from './config'; export interface VueCliConfig extends Config { baseUrl?: string; publicPath?: string; outputDir?: string; assetsDir?: string; indexPath?: string; filenameHashing?: boolean; pages?: Record; lintOnSave?: string; runtimeCompiler?: boolean; transpileDependencies?: []; productionSourceMap?: boolean; crossorigin?: string; integrity?: boolean; configureWebpack?: any; chainWebpack?: Function; css?: { sourceMap?: boolean; loaderOptions?: Record; extract?: any; }; devServer?: DevServer; parallel?: boolean; pwa?: Record; pluginOptions?: Record; }