( rootDir: string, customReadFilep?: ReadFileP, )
| 157 | * thrown |
| 158 | */ |
| 159 | export async function getTSConfig( |
| 160 | rootDir: string, |
| 161 | customReadFilep?: ReadFileP, |
| 162 | ): Promise<ConfigFile> { |
| 163 | customReadFilep = (customReadFilep || readFilep) as ReadFileP; |
| 164 | const readArr = new Set<string>(); |
| 165 | return getBase('tsconfig.json', customReadFilep, readArr, rootDir); |
| 166 | } |
no test coverage detected
searching dependent graphs…