/** @typedef {import('./tsconfig.d.ts').default} TsConfig */ /** * Parses a `tsconfig.json` * * @param {string} filepath - The full path, including the filename, to the `tsconfig.json` file. * @returns {Promise} */ export function tsConfigParser(filepath: string): Promise; export type TsConfig = import("./tsconfig.d.ts").default;