( path: string, includeProjectFiles = true, )
| 173 | } |
| 174 | |
| 175 | export async function recursivelyGatherFiles( |
| 176 | path: string, |
| 177 | includeProjectFiles = true, |
| 178 | ) { |
| 179 | const ignore = createIgnore(path, includeProjectFiles) |
| 180 | const files: Record<string, string> = {} |
| 181 | await recursivelyGatherFilesHelper(path, path, files, ignore) |
| 182 | return files |
| 183 | } |
| 184 | |
| 185 | async function recursivelyGatherFilesFromEnvironmentHelper( |
| 186 | environment: Environment, |
no test coverage detected