(id: string)
| 164 | } |
| 165 | |
| 166 | function isBareModuleId(id: string): boolean { |
| 167 | return !id.startsWith("node:") && !id.startsWith(".") && !isAbsolute(id); |
| 168 | } |
| 169 | |
| 170 | export function createMatchPath(tsconfigPath: string | undefined) { |
| 171 | // There is no tsconfig to match paths against. |
no outgoing calls
no test coverage detected
searching dependent graphs…