method ErrorFactory.configNotFound
ErrorFactory.configNotFound(searchedPaths: string[]): NagareError

Create a configuration not found error

Examples

Example 1

const paths = ["./nagare.config.ts", "./nagare.config.js"];
throw ErrorFactory.configNotFound(paths);

Parameters

searchedPaths: string[]
  • Array of file paths that were searched

Return Type

Error with configuration setup instructions

Usage

import { ErrorFactory } from ".";