UNPKG

@visulima/tsconfig

Version:

Find and/or parse the tsconfig.json file from a directory path.

4 lines (3 loc) 168 B
import type { Except, TsConfigJson } from "type-fest"; export type TsConfigJsonResolved = Except<TsConfigJson, "extends">; export type Cache<T = any> = Map<string, T>;