| 45 | } |
| 46 | |
| 47 | export interface AliasMap { |
| 48 | /** Absolute path. The directory `compilerOptions.paths` is rooted at. */ |
| 49 | baseUrl: string; |
| 50 | /** |
| 51 | * Patterns ordered by specificity: longer prefix first, then literal- |
| 52 | * before-wildcard, so the resolver tries the most-specific match. |
| 53 | */ |
| 54 | patterns: AliasPattern[]; |
| 55 | } |
| 56 | |
| 57 | /** |
| 58 | * Strip JSONC comments + trailing commas so a tsconfig with the usual |
nothing calls this directly
no outgoing calls
no test coverage detected