@softwareventures/maintain-project
Version:
Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited
7 lines (6 loc) • 408 B
TypeScript
import type { ParsedCommandLine } from "typescript";
import type { ProjectSource } from "../project/project.js";
import type { ReadJsonFailureReason } from "../project/read-json.js";
import type { Result } from "../result/result.js";
export type ReadTsconfigResult = Result<ReadJsonFailureReason, ParsedCommandLine>;
export declare function readTsconfig(project: ProjectSource): Promise<ReadTsconfigResult>;