(filePath: string)
| 34 | * @param filePath path to get |
| 35 | */ |
| 36 | export function getProjectFilePath(filePath: string): string { |
| 37 | return resolve(getProjectRootPath(), filePath); |
| 38 | } |
| 39 | |
| 40 | export function getProjectTSConfigPath(): string | undefined { |
| 41 | return [getProjectFilePath('tsconfig.app.json'), getProjectFilePath('tsconfig.json')].find((path) => existsSync(path)); |
no test coverage detected