import { DEFAULT_COLORIFY, DEFAULT_COMPACT, DEFAULT_DEPTH, DEFAULT_INCLUDE_DEPENDENCIES, DEFAULT_MAX_STRING_LENGTH, DEFAULT_NO_COMPILE, DEFAULT_OUTPUTS, DEFAULT_OUTPUT_DIR, DEFAULT_PRETTIFY, DEFAULT_RUN_ON_COMPILE, DEFAULT_WRITE_TO_FILE, } from "~/constants"; import type { FinderConfig } from "~/types"; export const defaultFinderConfig: FinderConfig = { outputs: DEFAULT_OUTPUTS, depth: DEFAULT_DEPTH, maxStringLength: DEFAULT_MAX_STRING_LENGTH, includeDependencies: DEFAULT_INCLUDE_DEPENDENCIES, colorify: DEFAULT_COLORIFY, prettify: DEFAULT_PRETTIFY, compact: DEFAULT_COMPACT, noCompile: DEFAULT_NO_COMPILE, runOnCompile: DEFAULT_RUN_ON_COMPILE, writeToFile: DEFAULT_WRITE_TO_FILE, outputDir: DEFAULT_OUTPUT_DIR, };