UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

7 lines 384 B
import { type JsonWriteOptions } from './fileutils'; /** * Writes a JSON file, formatting with Prettier if available, otherwise * falling back to standard JSON serialization. */ export declare function writeFormattedJsonFile<T extends object = object>(filePath: string, content: T, options?: JsonWriteOptions): Promise<void>; //# sourceMappingURL=write-formatted-json-file.d.ts.map