| 328 | } |
| 329 | |
| 330 | interface File extends RawFile { |
| 331 | type: string; |
| 332 | sourcePath: string; |
| 333 | targetPath?: string; |
| 334 | servePath?: string; |
| 335 | absModuleId?: string; |
| 336 | deps?: Record<string, ImportInfo>; |
| 337 | lazy: boolean; |
| 338 | bare?: boolean; |
| 339 | // TODO Improve the sourceMap type. |
| 340 | sourceMap?: Record<string, any>; |
| 341 | implicit?: boolean; |
| 342 | imported: string | boolean; |
| 343 | [fakeSymbol]?: boolean; |
| 344 | reportPendingErrors?: () => number; |
| 345 | hasErrors?: boolean; |
| 346 | missingModules?: Record<string, ImportInfo>; |
| 347 | alias?: FileAlias; |
| 348 | } |
| 349 | |
| 350 | type FileAlias = { |
| 351 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…