| 9 | * Typing for the parts of tsconfig that we care about |
| 10 | */ |
| 11 | export interface Tsconfig { |
| 12 | extends?: string | string[]; |
| 13 | compilerOptions?: { |
| 14 | baseUrl?: string; |
| 15 | paths?: { [key: string]: Array<string> }; |
| 16 | strict?: boolean; |
| 17 | }; |
| 18 | } |
| 19 | |
| 20 | export interface TsConfigLoaderResult { |
| 21 | tsConfigPath: string | undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…