vue-styleguidist
Version:
Vue components style guide generator
11 lines (10 loc) • 317 B
TypeScript
/**
* Find user’s Webpack config and return its path.
* Fixed location for Create React App or webpack.config.js in the root directory.
* Returns false if config not found.
*
* @return {string|boolean}
*/
export default function findUserWebpackConfig({ rootDir }: {
rootDir: string;
}): string | boolean;